jQWidgets Forums
Forum Replies Created
-
Author
-
May 3, 2014 at 8:18 am in reply to: TabIndex problem for child jqx windows TabIndex problem for child jqx windows #53887
Thank you peter..Issue solved .I have moved to latest version of jqwidjets
May 2, 2014 at 9:34 am in reply to: TabIndex problem for child jqx windows TabIndex problem for child jqx windows #53875Yes..the problem is from second text box..please check again ..if you apply tab 2ed time on 2ed window,the focus will be gone to 1st window..
Iam very sure about this ..as well as i have tested with different browsers.May 2, 2014 at 4:28 am in reply to: TabIndex problem for child jqx windows TabIndex problem for child jqx windows #53860Any one please help me..
Thanks.
April 30, 2014 at 10:49 am in reply to: TabIndex problem for child jqx windows TabIndex problem for child jqx windows #53770Here is my code..I have two popup windows,if i clik btn0_1 button,the first window will be displayed.From that window i have a second button if i click the btn1_3 ,another window will be displayed.
<input type="button" id="btn0_1" value="Show Window 1"> <!-- first window --> <div id="1"> <div>Window 1</div> <div style="overflow: hidden;"> <input type="text" id="txt1_1"> <br><br> <input type="text" id="txt1_2"><br><br> <input type="button" id="btn1_3" value="Show Window 2"> </div> </div> <!-- second window --> <div id="2"> <div>Window 2</div> <div style="overflow: hidden;"> <input type="text" id="txt2_1"> <br><br> <input type="text" id="txt2_2"><br><br> <input type="button" id="btn2_3" value="Show Window 3"> </div> </div>
Jquery//Window1 $("#1").jqxWindow({ width:600,maxWidth: 840,height: 600, maxHeight: 700,resizable: false,theme:theme, isModal: true, autoOpen: false, modalOpacity: 0.5 }); //Window2 $("#2").jqxWindow({ width:400,maxWidth: 840,height: 400, maxHeight: 700,resizable: false,theme:theme, isModal: true, autoOpen: false, modalOpacity: 0.5 }); $("#btn0_1").click(function () { $("#1").jqxWindow('open'); $("#1").jqxWindow('focus'); $("#btn1_3").jqxInput('selectAll'); }); $("#btn1_3").click(function () { $("#2").jqxWindow('open'); $("#2").jqxWindow('focus'); $("#txt2_1").jqxInput('selectAll'); }); $("#txt1_1").jqxInput({theme : theme}); $("#txt1_1").width(300); $("#txt1_1").height(25); $("#txt1_2").jqxInput({theme : theme}); $("#txt1_2").width(300); $("#txt1_2").height(25); $("#txt2_1").jqxInput({theme : theme}); $("#txt2_1").width(300); $("#txt2_1").height(25); $("#txt2_2").jqxInput({theme : theme}); $("#txt2_2").width(300); $("#txt2_2").height(25);
The problem is the tab index for inner popup window(id:2) does not work.
Thanks Peter Stoev..
The problem i was tring with an old version of jqwidgets..i updated to latest version of jqwidgets.Now everything seems to be fine..Ok thanks Peter Stoev.
Can you post the exact link for that?
Thanks
-
AuthorPosts