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
8920
debugging loaded on demand grid
posted

Page blowing up with the following unhanded error.  How can I debug the problem, can I somehow step through client code.. The error strange since I'm not even binding to the table in the message, I'm binding to the table that actually has the fields in the message but somewhere  it gets mixed up.

Parents
  • 8160
    Verified Answer
    posted

    Hi mcseidel,
    to see more details for this error disable grid's Ajax and run the application in Debug mode:

    <ig:WebHierarchicalDataGrid ID="whdg" EnableAjax="false"  runat="server" AutoGenerateColumns="False" EnableDataViewState="true"

      DataKeyFields="idMaster" Height="373px" Key="idMaster" Width="1040px" OnRowIslandsPopulating="whdg_RowIslandsPopulating"

      OnCalculateCustomSummary="whdg_CalculateCustomSummary" OnRowUpdating="whdg_RowUpdating">

     

    If you are subscribed for the client event and it is fired then you just debug the client code as you normally debug javascript

     IslandGrid.Behaviors.EditingCore.Behaviors.CellEditing.CellEditingClientEvents.ExitedEditMode = "CellEditing_ExitedEditMode";

     

Reply Children
No Data