Hi guys,
I am using dynamic radio button list using javascript, actually i got a radio list .when i click those buttons ,it doesn't allow to check.please help me resolve this problem..
option = document.create Element("input" );
option.type = "radio";
option.name="ra dGroup";
option.id = xmlValues[j];
option.value = xmlValues[j];
//if(j==0){option .defaultChecked = true; option.checked = true; };
mycurrent_cell. appendChild(opt ion);
// appends the cell <td> into the row <tr>
mycurrent_row.a ppendChild(mycu rrent_cell);
mycurrent_cell. setAttribute("a lign", "center");
thanks
murali
I am using dynamic radio button list using javascript, actually i got a radio list .when i click those buttons ,it doesn't allow to check.please help me resolve this problem..
option = document.create Element("input" );
option.type = "radio";
option.name="ra dGroup";
option.id = xmlValues[j];
option.value = xmlValues[j];
//if(j==0){option .defaultChecked = true; option.checked = true; };
mycurrent_cell. appendChild(opt ion);
// appends the cell <td> into the row <tr>
mycurrent_row.a ppendChild(mycu rrent_cell);
mycurrent_cell. setAttribute("a lign", "center");
thanks
murali
Comment