I get this error after adding a grid to my web form and running the app.
Hi marcgh,
The CellEditing behavior needs to live off of the EditingCore's behaviors, as it is dependent upon that behavior to work. Your grid should look like the following. If you use the behavior designer, you will see that this is the case.
<ig:WebDataGrid ID="WebDataGrid1" runat="server"> <Behaviors> <ig:EditingCore> <Behaviors> <ig:CellEditing> </ig:CellEditing> </Behaviors> </ig:EditingCore> </Behaviors> </ig:WebDataGrid>regards,David Young