Is it possible to change the width of a `List/Reco...
# suitescript
j
Is it possible to change the width of a
List/Record
(single select) field on a Suitelet?
w
I've dom-hacked it once. Don't think you can control it through standard NS apis
j
Do you happen to remember how you DOM-hacked it? I was thinking of trying that…. looked a bit tricky to figure out. I’d like an approach that works anytime records of a certain type are detected.
w
I was just playing around a bit and I wanted all the input fields to be a bit smaller and added an inline HTML field with this defaultValue
Copy code
<script>
    jQuery('.input').css('width','')
</script>
j
oh shoot lol I should have checked what thread I was replying to, thought this was this one: https://netsuiteprofessionals.slack.com/archives/C298P0BCK/p1698437447009759 hehheh
though luckily my pre-caffeine response to you is still applicable!
Thanks