Please help. I have the following codes
//checkboxlist
function FillCheckBoxList_CallBack(response)
{
var rows = response.value.Tables[0].Rows.length;
for(var i=0; i<rows; i++)
{
var output_checkbox = "<input type='checkbox'
id='checkbox_groupname' value=' " +
response.value.Tables[0].Rows[i].CategoryName + " ' />";
alert(response.value.Tables[0].Rows[i].CategoryName);
}
}
I could see the alert message for every single category, but the
checkboxlist is not displayed or another word it is not populated on
the page. Some one point to me what I did miss in the code please.
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---