EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: evaro on March 05, 2014, 11:30:21 AM



Title: propertygrid not show dynamic change [SOLVED]
Post by: evaro on March 05, 2014, 11:30:21 AM
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:
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
(http://)


Title: Re: propertygrid not show dynamic change
Post by: stworthy on March 05, 2014, 06:59:54 PM
Please refer to this example http://jsfiddle.net/3q59D/. It works fine.


Title: Re: propertygrid not show dynamic change [RESOLVED]
Post by: evaro on March 05, 2014, 09:15:03 PM
Very thanks, you response work for me!