Hi,
Is there any tabstop property of Ultrawebgrid just like we have for ultrawingrid?
Can we have any property or method, so that we can avoid webgrid control while tabbing out from one control to another control?
Thanks in advance.
IH.
Hello nnaim,
A possible work around could be the following javscript which takes the grid DOM element create tabinex attribute and add it to the parent div element this will make the grid skipped from tab sequence:
<script type="text/javascript" id="igClientScript"><!--function UltraWebGrid1_InitializeLayoutHandler(gridName){ //Add code to handle your event here. var oGrid = igtbl_getGridById(gridName); var tabIndexAttribute = document.createAttribute("tabindex"); tabIndexAttribute.nodeValue = "-1"; oGrid.Element.parentNode.setAttributeNode(tabIndexAttribute);; }// --></script>
I have the same exact question. I'm using UltraWebGrid 10.3 and want to disable this standard feature that comes with the grid. So we can use the tab key to move from one control to another and not to navigate through the cells. In short, skip the focus on the grid. I heard of the property TabNavigation and TabStop but not sure if its available with UltraWebGrid.
Thanks!
NN