I am using the Infragistics2.Web.UltraWebGrid.v8.1 (Version 8.1.20081.2161) and ClientSideEvents work in Internet Explorer but do not work in FireFox, there is a solution to this problem?
Hi moravi,
It has been some time since your post but in case that you still need assistance I will be happy to help.
The version of NetAdvantage you are using is not supported in Firefox. You can find the supported environments here: http://ko.infragistics.com/support/supported-environments.aspx#SupportedEnvironments
Please note that UltraWebGrid is outdated. I suggest that you try the WebDataGrid. You can find illustrative samples of WebDataGrid's features at: http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=data-grid
If you have any other questions please feel free to contact me.
Hi, Forum.
I am using infrastics35.UltraWebGrid 10.3
ClientSideEvents DblClickHandler is not fired at all. urgent, please help me.
My source as followings.
<script type="text/javascript"> function gridDoubleClick(gridName, cellId) { var c = igtbl_getCellById(cellId); var r = c.getRow(); var v = r.getCellFromKey("id").getValue();
if (v != null) location.href = "alerts-edit.aspx?id=" + v; }
</script>
<igtbl:UltraWebGrid ID="grid1" runat="server"> <Bands> <igtbl:UltraGridBand> <AddNewRow Visible="NotSet" View="NotSet"> </AddNewRow> </igtbl:UltraGridBand> </Bands> <DisplayLayout ClientSideEvents-DblClickHandler="gridDoubleClick" Version="4.00" SelectTypeRowDefault="Single" Name="grid1" RowHeightDefault="20px" StationaryMarginsOutlookGroupBy="True" AllowColSizingDefault="Free" AllowSortingDefault="Yes" HeaderClickActionDefault="SortMulti" BorderCollapseDefault="Separate" TableLayout="Fixed"> <FrameStyle BorderColor="#FFC080" BorderStyle="Ridge" BorderWidth="3px" Cursor="Default" Font-Names="Verdana" Font-Size="9pt"> </FrameStyle> <RowAlternateStyleDefault BackColor="#FBF1DD"> <BorderDetails ColorLeft="251, 241, 221" ColorTop="251, 241, 221" /> </RowAlternateStyleDefault> <ClientSideEvents DblClickHandler="gridDoubleClick"></ClientSideEvents> <HeaderStyleDefault BackColor="#F5E1BA" BorderColor="Black" BorderStyle="Solid" ForeColor="#94753B"> <BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px" /> </HeaderStyleDefault> <RowStyleDefault BackColor="#F5EFE4" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="8pt" ForeColor="#94753B"> <Padding Left="3px" /> <BorderDetails ColorLeft="245, 239, 228" ColorTop="245, 239, 228" /> </RowStyleDefault> <SelectedRowStyleDefault BackColor="#D4B883" ForeColor="White"> </SelectedRowStyleDefault> <ActivationObject BorderColor="Black" BorderWidth=""> </ActivationObject> </DisplayLayout> </igtbl:UltraWebGrid>