Title: How to change the combobox border-color? Post by: r2ferna on March 10, 2015, 06:22:06 PM This line works fine!
Code: $('#filtroAv').css("border-color", "red"); Code: $('#inpField').css("border-color", "red"); The second line is for a combobox. Code: <input id="inpField" class="easyui-combobox" style="width:100px;" MTIA. Fernando. Title: Re: How to change the combobox border-color? Post by: stworthy on March 10, 2015, 07:51:00 PM Call the function below to change the border color for a special field.
Code: function changeFieldBorderColor(field, color){ Usage example: Code: changeFieldBorderColor('#filtroAv', 'red'); Title: Re: How to change the combobox border-color? Post by: r2ferna on March 11, 2015, 06:51:24 PM Thanks a lot stworthy!!
|