inserting new row..i found data is missing

grid.setColTypes(“ro,ra,txt,co,ch,ra,co,ed,ed,co,ed”);

While inserting new row…i found data is missing in combo box, radio button and check box is not appearing.

i am using
grid.addRow(rowId,[default values…]);
default value is coming but data is missing in combo box, radio button and check box is not appearing.

see attach files…
Please help…

What is the actual “[default values…]” in your case?

see the image…the newly inserted row doesn’t contains radio button and check box…
and combo box is blank…since it’s setColTypes(“ro,ra,txt,co,ch,ra,co,ed,ed,co,ed”);

What is “default values…” in your case? Can you provide full code of addRow() method?

grid.setColTypes(“txt,txt,co,ch,ra”);
grid.addRow(newRowId,[“Name”,“Address”]);

In above case my 1st and 2nd fields are textarea so i m giving ‘Name’ and ‘Addressas’ in default value…
my 2nd field is combo, i want to put 1,2,3,4,5… in the combo, so how i will put those value into combo.

while i m trying to insert a row, radio button and check box is not coming.