Hello.
Ok, I've uploaded the images using the Image component.
Now I have added a Radio component (with 5 items). I have to specify the class, I've seen that I can only specify the class in the group of radio buttons, so I assigned the class "star", but doesn't work.
I've seen in the source code that the class is saved this way for the group:
code
<div data-role="fieldcontain" class="star mobileradiogroup1" id="j_18" dsid="regaloRating">
/code
The manual of Star Rating says that the code of each radio button should be:
code
<input name="star1" type="radio" class="star"/>
/code
But the source code of one button that I have is:
code
<span dsid="regaloRating1" class="mobileradiobutton1">
<input type="radio" name="regaloRating" id="j_19" style='display:none' checked="checked" tabIndex="2" data-theme="a" value="j_19" />
<label id="j_19_label" for="j_19"></label>
</span>
/code
Using "More Properties" of the radio button I can't add the class, because it says that is a reserved code.
How can I use the special class?