Categories | Question details Back To List | ||
how to set the focus from dhtmlCmboBox to cell grid when tab is pressed Dear SIR/Mam i got one problem that i am not able to put tabOrder from the screen ex: in myscreen conatins the 2 text box and button and DHTMLcomboBoX once we pressed the tab key on DHTMLcomboBoX it should move to cell grid of first element of first row i am using <table class="dhtmlxGrid"> custmization cell grid please do the needful regards arun Answer posted by Support on Feb 12, 2008 02:40 You may use code similar to next tabbar.attachEvent("onBlur",function(){ mygrid.selectCell(0,0); }); |