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
10
UltraWebGrid CellClick problem
posted

Hi,

Can some1 Please help me with a problem i am in ,,,,,,

I am working on ASP.NET with C# and in one of my page i have a webgrid(Infragistics) with an edit button on each row ,

The clickcellbutton written on codebehind is as follows

 

 protected void ugClientBillingList_ClickCellutton(object sender, Infragistics.WebUI.UltraWebGrid.CellEventArgs

e)

{

int id;

 

 

 

if (e.Cell.Row.Cells[2].Value == null)

{

id = 0;

}

 

 

else

{

id = (

int)e.Cell.Row.Cells[2].Value;

}

and i am calling this event on my aspx page as

 

<

igtbl:UltraWebGrid ID="ugClientBillingList" runat="server"  OnInitializeLayout="ugClientBillingList_InitializeLayout" OnClickCellButton="ugClientBillingList_ClickCellutton"  TabIndex="30" EnableTheming="True">

now every thing works fine in IE browser but on Firefox the click cell button event is not firing ...

Please help ....I'll be really greatful

thanks