-
The Virtual Server widget has an option for specifying the disabled list options/items. However, in our use case, we need to disable the whole widget if some conditions are not met. I am thinking that we could have a top level property called If this is already possible, then how is it done? If not, then the next question will be: is it an acceptable feature request? I will be willing to contribute some code to make it happen. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@asiby, you are welcome to contribute to the plugin. Please implement it and submit a PR. |
Beta Was this translation helpful? Give feedback.
-
@asiby this feature has been implemented in the release v1.0.21 /** to disable all dropdown options */
document.querySelector('#sample-select').setDisabledOptions(true);
/** to disable dropdown */
document.querySelector('#sample-select').disable(); |
Beta Was this translation helpful? Give feedback.
@asiby this feature has been implemented in the release v1.0.21