Hello,
I have just upgraded from WebClient controls version 10.1 to 10.2 and my previous flawless WebHierarchicalDataGrid now breaks after paging with a clientside error from the ajax include file. MicrosoftAjax.debug.js Assembly: System.Web.Extensions Version: 3.5.0.0 FileVersion: 3.5.30729.1
Error is: Sys.ArgumentException: Value must not be null for Controls and Behaviors. Parameter name: element
At: if (!element) throw Error.argument('element', Sys.Res.createNoDom);
I have a two level parent-child relationship. Paging is set to 25 items. Steps to reproduce: Expand a parent with one page of children works fine. Expand a parent with multiple pages of children works fine for initially. Once I page (click page 2) and result come back fine. The error occurs in trying to expand a parent above the recently paged parent. It consistently errors in the ajax script file.
The tested the same data from the same project one week ago but with the version 10.1 controls and no such error occurs.
As an aside, I am using InitialDataBindDepth of -1. When I change the value to 0 (load on demand) I get the error: "Deserialization failure: Invalid response." This error will occur after expanding a parent with multiple pages of children, expanding a parent with one page of children and then trying to re-expand the parent with multiple children. No paging action is needed to reproduce the error in this scenario.
Anyone please advise as this is a roadblock and a full day of research has come up empty so far.
Thanks,
Charlie
I am now getting this error as well. Just updated to the latest 10.3 service release (10.3.20103.2187)
I am binding to a datset
Here is the grid, nothing complicated. i even took out the sorting behaviour to see if that was it, but no joy.
<ig:WebHierarchicalDataGrid ID="whdgMatters" runat="server" EnableDataViewState="False" Width="90%" AutoGenerateBands="False" AutoGenerateColumns="False" DataKeyFields="ClientMatter" DataMember="Matters" Key="Matters" InitialDataBindDepth="1" > <Columns> <ig:BoundDataField DataFieldName="CMName" Key="CMName"> <Header Text="Client/Matter Name" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="ClientMatter" Key="ClientMatter"> <Header Text="Client/Matter #" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="BillableTotal" Key="BillableTotal"> <Header Text="Total Billed" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="CallCount" Key="CallCount"> <Header Text="Calls" /> </ig:BoundDataField> </Columns> <Bands> <ig:Band AutoGenerateColumns="False" DataMember="Calls"> <Columns> <ig:BoundDataField DataFieldName="ConferenceDateTime" DataFormatString="{0:G}" Key="ConferenceDateTime"> <Header Text="DateTime" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="HostName" Key="HostName"> <Header Text="Inputted Host" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="HostTelephone" Key="HostTelephone"> <Header Text="Host Phone" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="CallDuration" Key="CallDuration"> <Header Text="Duration" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="AttendeeCount" Key="AttendeeCount"> <Header Text="# Attendees" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="BillableAmt" Key="BillableAmt" DataFormatString="{0:C}"> <Header Text="Amount Charged" /> </ig:BoundDataField> </Columns> </ig:Band> </Bands> </ig:WebHierarchicalDataGrid>
We ran into the same issue. Looking at the changes, we were running the AjaxControlToolkit.dll Version 3.0.20820.0 and upgraded to 4.1.40412.2.
After the upgrade, this error started occuring in the WHGrid without any changes to the code base. We reverted the Tool Kit version and that solved our issue.
Cheers
Hello Lyuba
Sorry -- false alarm. I had a block of code in my markup that was commented out that was causing the error. When I removed it, the problem cleared. However, the code that I had commented out was for http://community.infragistics.com/forums/p/50123/264288.aspx#264288 that I'm still waiting to hear from someone.
Thank you
Hello ClaySeifert,
Would you please test it with the latest service release: 10.3.20103.2046.
If you are still getting this error with it, would you please attach a sample and the exact steps that should be followed for reproducing this issue.
Regards,
Lyuba
Developer Support Engineer
Infragistics
www.infragistics.com/support
Not so fast. I'm using WebDataGrid 10.3 with the following and I'm getting the error:
<EditorProviders> <ig:DropDownProvider ID="TerritoryProvider"> <EditorControl ID="EditorControl1" runat="server" DataSourceID="SqlDataSource2" DisplayMode="DropDownList" DropDownContainerMaxHeight="300px" EnableAnimations="True" TextField="mktgrpkey" ValueField="mktgrpname" EnableDropDownAsChild="False" DropDownContainerHeight="300px" > <DropDownItemBinding TextField="mktgrpkey" ValueField="mktgrpname"> </DropDownItemBinding> </EditorControl> </ig:DropDownProvider></EditorProviders>
<ig:CellEditing Enabled="true" > <ColumnSettings> <ig:EditingColumnSetting ColumnKey="Territory" EditorID="TerritoryProvider" /> </ColumnSettings></ig:CellEditing>
Please advise on how to correct.