I have searched the forums on this and have not found anything close. Would this be a TS config thing or an Ektron application problem? Is this a known issue or is there a "tweak" for this. Cells in a table that has been added to the VFE app cannot be tabbed thru. Anyone run into this? Thanks.Teamsite 6.5 on Sol 9Ewebeditpro on Windows XP
You are accessing a table within an HTML form essentially - the tab character in an HTML form is usually (always?) going to be caught by the browser and processed as a directive to change to the next input field.It's possible that there might be some way for a text-field within an HTML form within a browser to somehow capture the tab before the browser does and handle it differently - if so - then this would be an Extron / VFE issue - but I think this is basically a web-interface vs. application interface issue.
I'll leave the hacking up to you but here is some Javascript that will capture a keydown event and process the request accordingly:[html]function handler(e) { if (document.all) { e = window.event; } var key; if (document.layers) key = e.which; if (document.all) key = e.keyCode if (key == 9) { // this happens to be the TAB key .... }}</script>[/html]As far as calling the handler function, you might be able to put onKeydown="handler();" into the VFE somehow. Like I said, the hacking stuff is up to you but the JS is here.
... but where to call the function could be tricky.