Hello
Is there a option to make the droplist without the border. Do not have hide border option like text box. How do we achieve if I need to place a drop down like this in the image.
Thanks.
Hello
Is there a option to make the droplist without the border. Do not have hide border option like text box. How do we achieve if I need to place a drop down like this in the image.
Thanks.
Hi newbiejoe,
just add the below code into your onpageload event. Refer the attached screenshot and rp file.
javascript: $(â[data-label=âdropdown_testâ]â).css(âborderâ, ânoneâ); throw new Error();
Hello, This is an older question and the javascript support may not be in v7, but I couldnât get this to work. I published to Preview and to Axshare with the same results for my file and the attached file "dropdown_without-border.rp. Please advise. Thank you.
Hi John,
Please try to replace the code with existing.
javascript: $(â[data-label=âdropdown_testâ] selectâ).css(âborderâ, ânoneâ); throw new Error();
Thanks,
Vikram
Thanks Vikram. Very helpful. Just want to add that I was able to make it apply to all droplists on the page, not depending on a specific label, with this variation:
javascript: $(â[class=âax_default droplistâ] selectâ).css(âborderâ, ânoneâ); throw new Error();
The class names have changed since then. The current correct answer for kilingl the annoying borders is:
javascript: $(âselect[style*="-webkit-appearance: menulist-button;"]â).css(âborderâ, ânoneâ);
NB! No need to throw the error!
Is this working for anyone? I used it and even tried other css properties but when I look at the component while inspecting the code, I donât see the css injected.
None of the above solutions worked for me in Axure 8.