Hello Sir,

I am using the radio group. And two radio buttons in it. for example say Salary and Wages. The salary has the 'S' flag and wages has the 'W' flag in the database. The data is displayed in the grid along with the flags but the problem is that i am not able to check the radio buttons according to the flags. Which property did i miss to mention???

So i would like to have the help from the experts like You.

This is my sample code...

<ext:Anchor>
<ext:RadioGroup ID="RG1"
runat="server"
DataIndex="PT"
ColumnsNumber="2"
FieldLabel="Pay Type"
GroupName="PT">
<Items>
<ext:Radio ID="RadioSalary" runat="server" BoxLabel="Salary" DataIndex="PT">
</ext:Radio>
<ext:Radio ID="RadioWages" runat="server" BoxLabel="Wages" DataIndex="PT">
</ext:Radio>
</ext:Anchor>


Waiting for your favourable response.