Hi, im need change cell value , but this not show: 
Initially charge default data from json, but when user change other related info, i need change the related info:
The code:
            
     var filas = $("#gridInfo").propertygrid('getData');
     $.each( filas.rows, function(i,o){
     if( o.name=='Base')
         o.value = row.Database;
     });
     $("#gridInfo").propertygrid('loadData',filas);
not errors found with change, but propertygrid not show data change
