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.
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";
I'm not subscribed to client events, and changing EnableAJAX does not change much, it just throws the same message into the browser instead of a box without stopping in the debugger... The message does not make sense to me at the moment, so I was looking for the way to find out where it came from and maybe why.,,