Posted 12 August 2020, 12:49 am EST
Hi ,
I am working on Wijmo Grid which has readonly disable input textbox.
Tab order is working fine and i have cycleout option too
How can i skip the disable fields while tabbing is there way ?
Thanks
Forums Home / Wijmo / General Discussion
Posted by: pmithilesh on 12 August 2020, 12:49 am EST
Posted 12 August 2020, 12:49 am EST
Hi ,
I am working on Wijmo Grid which has readonly disable input textbox.
Tab order is working fine and i have cycleout option too
How can i skip the disable fields while tabbing is there way ?
Thanks
Posted 13 August 2020, 7:57 am EST
Hi Mithilesh,
Could you please more information about how the textbox is added? Are you using cell templates? Also, please let us know if whole rows/columns are read-only or it is possible that only some cells of a row/column are readonly?
Regards
Posted 15 August 2020, 11:09 am EST
Hi we added Text box as cell template using readonly property true
Posted 17 August 2020, 6:32 am EST
Hi Mithilesh,
You will need to create a method that will take row and column index as the parameter and return whether the cell can be selected or not. Then, handle the selectionChanged event and if the current cell is readonly, then move the selection to the next cell. Please refer to the sample link below for reference:
https://stackblitz.com/edit/angular-w5igjb
Regards,
Ashwin
Posted 17 August 2020, 9:40 pm EST
Hi Ashwin ,
The solution for tab does work and i was able to Tab those elements now thank you so much.