Hi
I would like to know how to include space between radio buttons while using classlib.
Below is my code snippet:-
RadioButtonGroup rbg1 = new RadioButtonGroup("rbg0"+i);
rbg1.setColumnCount(3);
rbg1.addItem("3","");
rbg1.addItem("2","");
rbg1.addItem("1","");
I tried including text and setting encode to false but I got an exception:-
rbg1.addItem(3,"include Space");
rbg1.setEncode(false);
setEncode throws exception->symbol cannot be resolved.Do I have to include some imports to resolve this error?