I am trying out the RadioGroup for the first time. Please see screenshot below of a RadioGroupItem The buttons are not centered aligned vertically for some reason, and i haven't managed to make it work, i suck at CSS.
I am using 13.1-p20250323 with an altered Tahoe skin.
I went in to your showcase to see if i could get any tips. (For some reason when you go into the showcase, it says 14.1 now?)
I did notice some differences. for example, in my load_skin i have:
whereas in your version you use
and
So, my question is - was this something you also identified and have fixed in newer versions?
I sure would like to align the items if i'm to use it so pointers would be much appreciated.
Cheers
I am using 13.1-p20250323 with an altered Tahoe skin.
I went in to your showcase to see if i could get any tips. (For some reason when you go into the showcase, it says 14.1 now?)
I did notice some differences. for example, in my load_skin i have:
Code:
if (isc.RadioGroupItem) { isc.RadioGroupItem.addProperties({ height: 22, textBoxStyle: "staticTextItemLite" }); } if (isc.RadioItem) { isc.RadioItem.addProperties({ textBoxStyle: "staticTextItemLite", labelStyle: "labelAnchor", // use labelAnchor, which has no v-padding - the containing RadioGroupItem // uses the usual formCell class, which has the padding cellStyle: "labelAnchor" }); }
Code:
{isc.RadioGroupItem.addProperties({height:22,textBoxStyle:"radioAnchor",useNativeRadioItems:false,showOver:true,showOverIcons:true})
Code:
isc.RadioItem.addProperties({textBoxStyle:"staticTextItemLite",cellStyle:"labelAnchor"})}
So, my question is - was this something you also identified and have fixed in newer versions?
I sure would like to align the items if i'm to use it so pointers would be much appreciated.
Cheers
Comment