I have a WebDataGrid that automatically updates the data when a different row is clicked. This works great.
However, when there is just 1 row in the grid, no matter what I do, the update is never executed! Do you have any suggestions? Please help. Thanks.
Added javascript function to the CellEditingClientEvents ExitedEditMode event.
<
="text/javascript">
cellEdited(sender, args)
{
//debugger;
);
grid.get_behaviors().get_editingCore().commit();
}
>
Behaviors>
<ig:EditingCore>
<Behaviors>
<ig:CellEditing>
<ColumnSettings>
<ig:EditingColumnSetting ColumnKey="CallTime"
EditorID="WebDateChooserProvider1" />
<ig:EditingColumnSetting ColumnKey="Conf_Num" ReadOnly="True" />
<ig:EditingColumnSetting ColumnKey="Category" ReadOnly="True" />
</ColumnSettings>
<CellEditingClientEvents ExitedEditMode="cellEdited" />
</ig:CellEditing>
</Behaviors>
I have the exact same problem. I am unsure of what/where/how to cause the update in the case of one row in a webdatagrid.