Showing posts with label Telerik. Show all posts
Showing posts with label Telerik. Show all posts

Friday, July 30, 2010

Retrieving the checked elements from the RADGrid

foreach (GridDataItem dataitem in radViewUsers.Items)
{
CheckBox chkbox = (CheckBox) dataitem.FindControl("cbSelect");

if (chkbox.Checked)
{
userName = dataitem["UserName"].Text;
Email = dataitem["Email"].Text;
}

}

Thursday, July 29, 2010

Button click event not firing in RadTabStrip ?