Click here to Skip to main content
15,888,351 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: how to add col dynamically using js and html Pin
Richard MacCutchan21-Feb-18 2:03
mveRichard MacCutchan21-Feb-18 2:03 
AnswerRe: how to add col dynamically using js and html Pin
ZurdoDev21-Feb-18 9:02
professionalZurdoDev21-Feb-18 9:02 
QuestionUsing JQuery on and off for events Pin
jkirkerx20-Feb-18 13:17
professionaljkirkerx20-Feb-18 13:17 
AnswerRe: Using JQuery on and off for events Pin
Richard Deeming21-Feb-18 8:07
mveRichard Deeming21-Feb-18 8:07 
GeneralRe: Using JQuery on and off for events Pin
jkirkerx22-Feb-18 7:31
professionaljkirkerx22-Feb-18 7:31 
Questionnodejs and WSDL Pin
dfgdsgjghiouyiouyol19-Feb-18 0:43
dfgdsgjghiouyiouyol19-Feb-18 0:43 
Question(NodeJS) ejs ignoring if statement if a css class is added to the element Pin
random_xyz12-Feb-18 5:08
random_xyz12-Feb-18 5:08 
QuestionJquery: How to conditionally attach/detach bootstrap datepicker with textbox Pin
Mou_kol7-Feb-18 8:17
Mou_kol7-Feb-18 8:17 
Based on drowdown value i would like to attach/detach bootstrap datepicker with textbox. i tried below way but it is not working as i want.....what i am missing there?

the problem is when jsfiddle run then calender is showing. i want datepicker will be shown when i select date from dropdown.

Attach textbox to datepicker with glyph icon - JSFiddle[^]

HTML
<div class="container">
  <div class="row">
    <div class='col-sm-2'>
      <div class="form-group col-xs-5 col-lg-1">
        <select id="dddata">
  <option value="Text">Text</option>
  <option value="Date">Date</option>
</select>
        <div class='input-group date' id='datetimepicker1'>
          <input type='text' class="form-control" />
        </div>
      </div>
    </div>

  </div>
</div>


JavaScript
$(document).ready(function () 
{
	  var $htmlelement = jQuery('<span class="glyphicon glyphicon-calendar"></span>');

  SetUPUI();
  $("#dddata").change(function() {
    SetUPUI();
  });


  function SetUPUI() {
    if ($('#dddata').val() == "Date") {

      $('#datetimepicker1').append($htmlelement);
      // bind datepicker to the element
      $('#datetimepicker1').datepicker({
        autoclose: true,
        format: "mm/dd/yyyy"
      });
    } else {

      // remove the proper element
      $('#datetimepicker1 span.input-group-addon').remove();
      // call destroy (remove does not work)
      //$('#datetimepicker1').datepicker('destroy');
      $('#datetimepicker1').datepicker("option", "disabled", true);
    }
  } 
});



please help me to find out and fix this problem. thanks
AnswerRe: Jquery: How to conditionally attach/detach bootstrap datepicker with textbox Pin
Mou_kol7-Feb-18 8:22
Mou_kol7-Feb-18 8:22 
Questionjquery addClass and removeClass not working Pin
Mou_kol5-Feb-18 22:47
Mou_kol5-Feb-18 22:47 
AnswerRe: jquery addClass and removeClass not working Pin
Richard Deeming6-Feb-18 2:29
mveRichard Deeming6-Feb-18 2:29 
GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol6-Feb-18 2:45
Mou_kol6-Feb-18 2:45 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming6-Feb-18 2:54
mveRichard Deeming6-Feb-18 2:54 
GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol7-Feb-18 20:43
Mou_kol7-Feb-18 20:43 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming8-Feb-18 0:51
mveRichard Deeming8-Feb-18 0:51 
GeneralRe: jquery addClass and removeClass not working Pin
Mou_kol8-Feb-18 1:18
Mou_kol8-Feb-18 1:18 
GeneralRe: jquery addClass and removeClass not working Pin
Richard Deeming8-Feb-18 1:23
mveRichard Deeming8-Feb-18 1:23 
QuestionAutomatic calculation of Days and Filling of Months, Year Pin
Kiran Kumar31-Jan-18 9:13
Kiran Kumar31-Jan-18 9:13 
AnswerRe: Automatic calculation of Days and Filling of Months, Year Pin
F-ES Sitecore1-Feb-18 0:12
professionalF-ES Sitecore1-Feb-18 0:12 
QuestionEdit an Embed COde Api to implement on a website Pin
Member 1363973526-Jan-18 18:32
Member 1363973526-Jan-18 18:32 
Rant[REPOST] Edit an Embed COde Api to implement on a website Pin
Richard Deeming29-Jan-18 10:37
mveRichard Deeming29-Jan-18 10:37 
QuestionHow to open a java script in a android phone Pin
Member 1361672010-Jan-18 9:07
Member 1361672010-Jan-18 9:07 
AnswerRe: How to open a java script in a android phone Pin
debasish mishra23-Jan-18 19:09
professionaldebasish mishra23-Jan-18 19:09 
Questioni need fileration of html table and pagenation using Jquery or javascript but should support by IE8 Pin
irfankundi78631-Dec-17 6:37
irfankundi78631-Dec-17 6:37 
AnswerRe: i need fileration of html table and pagenation using Jquery or javascript but should support by IE8 Pin
Richard Deeming8-Jan-18 6:51
mveRichard Deeming8-Jan-18 6:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.