Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
730
Error after adding a grid and trying to test it
posted

I get this error after adding a grid to my web form and running the app.

Parents
No Data
Reply
  • 33839
    Suggested Answer
    posted

    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 

     

Children
No Data