I have some fields that are required.
To do this I have set the value true for the required attribute.
Below you can see an example from my code:
public static DataSourceTextField surname;
...
surname= new DataSourceTextField("Surname", "Surmame");
surname.setLength(50);
surname.setRequired(true);
When my Panel is showed, the field's label for surname is Bold.
I wold like to change also the font colour for all the required attribute.
How can I do this? Can I modify the skin_styles.css? Which entry?
Thanks in advance
To do this I have set the value true for the required attribute.
Below you can see an example from my code:
public static DataSourceTextField surname;
...
surname= new DataSourceTextField("Surname", "Surmame");
surname.setLength(50);
surname.setRequired(true);
When my Panel is showed, the field's label for surname is Bold.
I wold like to change also the font colour for all the required attribute.
How can I do this? Can I modify the skin_styles.css? Which entry?
Thanks in advance
Comment