I have a form with a Bootstrap checkbox. When I add the disable Style to a checkbox that is a status indicator, not input, it looses the color blue, and becomes gray.
I’d like to ignore any clicks on the checkbox, but have the color style still work. Any ideas?
Gary
Hey Gary,
This is pure air code, as I’m not able to test is now, but try removing the class btn-secondary from it.
Kind regards
Ricardo Carraretto
Thanks Ricardo,
I decided this was easier to program and does the trick as well.
WiFiStatus.onclick=function(){
WiFiStatus.value = true;
}
Gary
Ricardo,
I had a test environment so I could test your idea. I don’t see in Inspector that class associated with any of the check box divs/input tags.
I’m still on AppStudio 8 with BS4. That may be the issue.
Gary
Sorry, I misread button, hence the btn-secondary. This is usually a Bootsttrap thing, so playing atound with the classes should work.