I want to disable all the elements inside Fieldset but enable few buttons inside it. Demo:
Use icons instead of buttons and attaching the click
event to the icons. This bypasses the disabled fieldset and works like a charm.
and the javascript (using angularjs)
$scope.openModal = ()=>{
// do stuff
};
Bootstrap can style a span to look exactly like a button. Spans do not use, or inherit, the disabled
attribute.
and the javascript (using angularjs)
$scope.openModal = ()=>{
// do stuff
};