or
Thanks in advance.
It get's converted into: this format
v Out-of-the-box XHTML-enabled
Output...
v Unmatched Loading Speed and Performance
v Microsoft Word-like Spell-checking
v Seven Ways for Pasting from Word
v Multilevel Undo/Redo with Action Trails
v Extended Functionality Through Integrated Controls
Thanks
Pardeep
void RadGrid1_PreRender(object sender, EventArgs e)
{
string IDs = string.Empty;
string rowIDs = string.Empty;
foreach (GridDataItem item in RadGrid1.MasterTableView.Items)--->
{
CheckBox checkBox = item["template"].FindControl("CheckBox1") as CheckBox;
if (checkBox.Checked)
{
IDs = IDs + item["LinkNumber"].Text + ",";
rowIDs = rowIDs + item.ClientID.ToString() + ",";
}
}
if (!string.IsNullOrEmpty(IDs))
{
IDs = IDs.Substring(0, IDs.LastIndexOf(","));
int rowCount = RadGrid1.PageSize;
ScriptManager.RegisterStartupScript(Page, Page.GetType(), "setSelectedAfterPostback", "setSelectedAfterPostback('" + rowIDs + "', " + rowCount + ");", true);
Label1.Text = IDs;
}
}
Please let me when there is a fix.