Renganathan M G
Renganathan M G

Reputation: 5209

How to change style for radiogroup checked value using extjs 4.2?

I want to do the following stuff,

value no checked:

enter image description here

Value checked:

enter image description here

I want to make the option label bold when it is get selected.

Upvotes: 0

Views: 854

Answers (1)

liss.sb
liss.sb

Reputation: 351

I think you must add the cls class to the items and define the .x-form-cb-checked class

Here ther is a fork of your code with the changes

http://jsfiddle.net/lisssb/VWP4C/

.ver_list .x-form-cb-checked{
    font-weight:bold;
}

Upvotes: 1

Related Questions