Author Topic: IMP - Tabbing  (Read 2818 times)

rgorantla

  • Pro Deluxe
  • Jr. Member
  • *
  • Posts: 88
    • View Profile
IMP - Tabbing
« on: October 13, 2014, 03:11:42 am »
Hi,

When i tab on input element - Delete is missing .. Please see attached images.

It started all of a sudden

Thanks ,
Roseline.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6298
    • View Profile
Re: IMP - Tabbing
« Reply #1 on: October 14, 2014, 02:31:21 pm »
it's because your delete button code is bound only in refresh event whereas you call refreshRow method in cellSave.

So you need to bound the delete buttons in both refresh and refreshRow events.

Corrected binding:

http://jsfiddle.net/paramquery/Ljd57c1k/2/
« Last Edit: October 14, 2014, 02:33:16 pm by paramquery »

rgorantla

  • Pro Deluxe
  • Jr. Member
  • *
  • Posts: 88
    • View Profile
Re: IMP - Tabbing
« Reply #2 on: October 14, 2014, 09:27:07 pm »
Thanks you