Updated/Inserted row marked with bold text doesn't work...

Hi,



In your example on the website (Dataprocessor --> Save Data dynamically) a row becomes bold after editing. Unfortunately when I’m editing in my own grid nothing becomes bold… Do you have an explanation for this? I’m using a datagrid + dataprocessor.



Thanks,



Mark Lardinois

This is result of dataprocessor work, if you have it initialized, the same behavior must be active.
Actually it’s pretty easy to add such behavior event without dataprocessor, next code will do the same effect:

 grid.attachEvent(“onEditCell”,function(state,id,index){
            var cell = grid.cells(id,index)
             if(state==2 && cell.wasChanged())
                        grid.setRowTextBold(id)
                return true;
            })