Hi,
In Hierarchical ultrawebgrid, I done Checkbox selection through Javascript. When Save button click i have try to get the checkbox values in serverside. its working in IE But in Firefox the current checked/unchecked check box values are not getting.
The following code I used to get the checkbox value.
drow[
;
Regards
Navadeep TS.
We need more details to pin point the issue. I've these questions:
1) How are you handling the checkBox column in the WebGrid? Is it a template column or you've set the Type of the column to be check box?
2) What kind of events are you handling on the Grid?
3) Are you using AJAX or not? If yes, then are you using UpdatePanel, WARP or the built in AJAX functionality of the Grid?
4) Which version of NetAdvantage, .Net FrameWork and Visual Studio are you using?
Please let me know as much details as possible.
Thanks
hi,
1) No its not a template column, see the sample below
<igtbl:UltraGridColumn AllowUpdate="Yes" Key="Add" NullText="" Type="CheckBox" BaseColumnName="Add"DataType="System.Boolean"> <ValueList ValueMember="Add"></ValueList><Header Caption="Add"><RowLayoutColumnInfo OriginX="2" /> </Header> <Footer> <RowLayoutColumnInfo OriginX="2" /> </Footer><CellStyle VerticalAlign="Middle"></CellStyle></igtbl:UltraGridColumn>
2) InitializeLayout and DataBound events i have Handled in the grid (Server) and a client side event ie, <ClientSideEvents AfterCellUpdateHandler="UG1_AfterCellUpdate" />
3) Yes, I am using update panel.
4) Version=8.2.20082.1000 (NetAdvantage for .NET 2008 Vol. 2 CLR 3.5)
the differences i noticed in IE And firefox is
1) by checking a check box and click some other button (added for checking purpose, no code inside)
then the checked checkbox is unchecked in Firefox but in IE its not happening Checked check box remain same.
Note :
When page load occurs the values in the grid are changed to the existing.
i didn,t used any grid loading or any other grid events in the page load event (grid events also not firing but value changed).