Jquery Ui Radio Button

Hi I am currently using JQUERY UI RADIO buttons on my view. However, jquery ui radio button has it’s own id and name on html input tag. Does anybody know how would I bind my Yii FormModel attribute into these radio buttons. So, I can read user-input data after yii form submission.

Sample of my JQUERY UI RADIO buttons.


<input type="radio" id="radio1" name="radio" />

<input type="radio" id="radio2" name="radio" checked="checked" />

<input type="radio" id="radio3" name="radio" />

Thanks,