I have row adding turned on.
And a "+" button/label on the datagrid, however when I exit the row, it is not added to the collection.
The rowadding event does not fire on the server side.
Could you provide a complete function for using that..
Hi Daryl007,
The '+' you refer to is in the row selector. Row Adding behavior only commits when hitting enter while in edit mode on the row or pressing tab off the last cell. You could attach a client event to that row selector click and have it commit the add row.
grid.get_behaviors().get_editingCore().get_behaviors().get_rowAdding()._commitRow();
regards,David Young