jQWidgets Forums

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts

  • lijgp
    Participant

    Thank you peter..Issue solved .I have moved to latest version of jqwidjets


    lijgp
    Participant

    Yes..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.


    lijgp
    Participant

    Any one please help me..

    Thanks.


    lijgp
    Participant

    Here 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.

    in reply to: onClick event handling onClick event handling #48370

    lijgp
    Participant

    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..

    in reply to: onClick event handling onClick event handling #48279

    lijgp
    Participant

    Ok thanks Peter Stoev.

    Can you post the exact link for that?

    Thanks

Viewing 6 posts - 1 through 6 (of 6 total)