skip to Main Content

Trying to add styles using jQuery in dialog of UI5

I am trying to add styles to my dialog header of my ui5 application, but the effect is not applied. Here is the code: ` onValueHelpRequest : function(oEvent) { var sInputValue = oEvent.getSource().getValue(), oView = this.getView(); if (!this._pValueHelpDialog) { this._pValueHelpDialog…

VIEW QUESTION

How do I remove an option from select list JQuery or Javascript?

My list can not have an option value like <option value="some_value"> Some text</option> My current code is <select id="select1"> <option>One</option> <option>Two</option> <option>Three</option> </select> <script src= "https://code.jquery.com/jquery-3.3.1.min.js"> </script> <script> $("option[value='Three']").remove() </script> I can not find a way to remove an option…

VIEW QUESTION
Back To Top
Search