Quantcast
Channel: Disabling Controls in Bootstrap - Stack Overflow
Browsing latest articles
Browse All 7 View Live

Answer by BigJoeNH for Disabling Controls in Bootstrap

Remember for jQuery 1.6+ you should use the .prop() function.$("input").prop('disabled', true);$("input").prop('disabled', false);

View Article


Answer by zahid ullah for Disabling Controls in Bootstrap

also you can use "readonly"<select id="xxx" name="xxx" class="input-medium" readonly>

View Article


Answer by Alagesan for Disabling Controls in Bootstrap

<select id="message_tag"><optgroup><option>........</option></optgroup>here i just removed bootstrap css for only "select" element. using following css...

View Article

Answer by Jeromy French for Disabling Controls in Bootstrap

No, Bootstrap does not introduce special considerations for disabling a drop-down.<select id="xxx" name="xxx" class="input-medium" disabled>or<select id="xxx" name="xxx" class="input-medium"...

View Article

Answer by Murat Çorlu for Disabling Controls in Bootstrap

Try<select id="xxx" name="xxx" class="input-medium" disabled>

View Article


Answer by silly for Disabling Controls in Bootstrap

try$('#xxx').attr('disabled', true);

View Article

Disabling Controls in Bootstrap

I'm using Bootstrap css and js in my application. Accidentally I clicked on a disabled Dropdown list and found that it's opening the dropdown. I have made it readonly in the attribute of the select...

View Article
Browsing latest articles
Browse All 7 View Live


Latest Images