Categories | Question details Back To List | ||
Changing "ro' to 'ed' for add mode I have a datagrid and I have set a column to 'ro' but when I call addRecord I want that only that col in the new record to be in 'ed' mode (this is a key field). I can reset the complete column to 'ed' in addRecord but then all rows can be edited in that column. Is there a way to just set the 'ed' status on a column in a single row? I tried setting the parameter to mark the cell as editable in the add record function but it is never gets to edit mode. I saw references to bubble=false but am not sure how to implement or if that would even do what I need. Thanks. RL Answer posted by Support on May 01, 2009 14:47 >>Is there a way to just set the 'ed' status on a column in a single row? After adding new row , you can use grid.setCellExcellType(id,ind,"ed"); To change type of necessary cell. |