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
1763
WebGrid's AfterCellUpdate event not beign fired for WebCombo
posted

I have a WebCombo as EditorControl for a column in my WebGrid. When I choose an item from theWebCombo to change the actual value for the cell theAfterCellUpdate (JavaScript) function is fired.. as long as I don't choose the item with ID = 0. I can choose any other item (as many times as I want) and everything works fine, but as soon as I choose the item with ID = 0, the event is fired that time but it won't fire again no matter what I choose.

SInce I already had a "omg, that was it! It was so simple and I didn't see it!" moment [http://forums.infragistics.com/forums/t/14206.aspx] I'm checking if the above described behavior could be caused by some misconfiguration or something like that.

Thanks for your replies.

Parents
No Data
Reply
  • 85
    posted

    Hello,

    I have a similar problem with  AfterCellUpdate client side function not firing on some cases in the first column of the editable grid.

    I found the moment you have any formatting code assigned for any column the AfterCellUpdate fails to fire.

    Following was my scenario:

    • I have an editable grid
    • I have server side code for formatting some of the columns like :->

      this.Bands[0].Columns[columnNo].Format = "###,###,##0";

    • The moment I change the cell value to 1000 the AfterCellUpdate does not fire only for somw columns (Looks very strange to me).

    • The only resolution I found was remove the column formatting it works absolutely fine :)

    Thanks,
    Chaitanya...

     

Children