7
Answers

Jquery DateTimePicker not working Updatepanel with masterpag

Senzeye

Senzeye

9y
1.1k
1
I put the bootstrap tab menu after that i place datetimepicker code but not working datetime picker properly . above i used the updatepanel
 
datetimepicker code use before the bootstrap function tab menu not work properly
 
please how to solve this problem?
 
  1. <meta charset="utf-8"/>    
  2.     <meta name="viewport" content="width=device-width, initial-scale=1"/>    
  3.     <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>    
  4.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>    
  5.     <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>    
  6.        
  7.     
  8.     
  9.     
  10.          <script type="text/javascript">    
  11.        function pageLoad() {    
  12.            maintainSelectedTab();                      
  13.            
  14.        }    
  15.        function maintainSelectedTab() {    
  16.     
  17.            var selectedTab = $("#<%=hfTab.ClientID%>");    
  18.            var tabId = selectedTab.val() != "" ? selectedTab.val() : "tab1";    
  19.            $('#dvTab a[href="#' + tabId + '"]').tab('show');    
  20.            $("#dvTab a").click(function () {    
  21.                selectedTab.val($(this).attr("href").substring(1));    
  22.                    //replace("#", ""));    
  23.                //substring(1));    
  24.            });    
  25.        }    
  26.           </script>    
  27.     
  28.         
  29.      <meta http-equiv="content-type" content="text/html; charset=utf-8"/>    
  30.     <link rel="stylesheet" type="text/css" href="Calender/jquery.datetimepicker.css" />    
  31.     <script type="text/javascript" src="Calender/jquery.js"></script>    
  32.     <script type="text/javascript" src="Calender/jquery.datetimepicker.js"></script>    
  33.        
  34.      <script type="text/javascript">    
  35.     
  36.     
  37.     
  38.          $(function () {    
  39.     
  40.                $("input[id$='txtCheckOut']").datetimepicker({    
  41.                  format: 'd/m/Y',    
  42.                  timepicker: false,    
  43.                                   
  44.              });    
  45.     
  46.               
  47.          });    
  48.     
  49.     </script>    
 
Answers (7)
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
Use Triggers..
 
Example :
 
http://www.aspdotnet-suresh.com/2012/05/ajax-updapanel-control-with-triggers.html 
0
Senzeye

Senzeye

NA 351 13k 9y
          already i used   updatemode ="Always" that,s also not working properly 
 
only two button click only accepts  
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
Change as updatemode ="Always"
 
 
The answer is helpful.Then Please accept it..!! 
0
Senzeye

Senzeye

NA 351 13k 9y
thank you .
 
 above reference worked fine .
 
that's working but all 6 tabs inside buttons  and other controls not worked . first 2 click only worked after that does not work.
 
i have added updatemode ="conditional" for updatepanel
 
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
Check the following reference :
 
http://www.aspforums.net/Threads/272636/Bootstrap-Tabs-Maintain-Selected-Active-Tab-on-Partial-PostBack-inside-AJAX-UpdatePanel-in-ASPNet/
 
http://stackoverflow.com/questions/24250457/recover-selected-tab-after-postback-with-bootstrap 
0
Senzeye

Senzeye

NA 351 13k 9y
thank you 
 
this method already worked  tab menu not work properly. 
 
whenever use above method tab menu does't work proper . change  every time active tab1 only  not stayed current tab .
 
 i am user  6 bootstrap tabs
 
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
Try this code :
  1.  <script type="text/javascript">   
  2.    
  3. Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(function ()  
  4. {  
  5.  $("input[id$='txtCheckOut']").datetimepicker({format: 'd/m/Y',timepicker: false,  
  6. }  
  7. });});</script>  
Reference :
 
http://stackoverflow.com/questions/520645/jquery-datepicker-ms-ajax-updatepanel-doesnt-work-after-post-back
 
http://stackoverflow.com/questions/24503556/jquery-date-picker-not-working-in-master-page
 
The answer is helpful.Then please accept it..!!