I could not resize neither textarea nor checkbox. I also could not change font size in checkbox. I tried many examples from this forum - css, ajax, tiggzi ... nothing!
please, help me.
I could not resize neither textarea nor checkbox. I also could not change font size in checkbox. I tried many examples from this forum - css, ajax, tiggzi ... nothing!
please, help me.
Hello! To change font size of component run next JS on screen Load event
Tiggzi('mobilecheckbox').css('font-size', '30px')
it only works for button,not for checkbox!
I found a working combination:
[dsid=checkbox] .ui-btn-text {
font-size: 12px;
}
textarea.ui-input-text {
height : 100px;
}
I hope this helps somebody.
If anyone else is looking to resize the textarea here is how I got it to work.
On page load run JS:
$('textarea[dsid="Textarea_Name"]').css('height',
'350px');
Where Texarea_Name is the name given to your text area in properties.
Matt, thank you for sharing this.