Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<
telerik:GridTemplateColumn
DataField
=
"IsTrue"
>
ItemTemplate
asp:CheckBox
ID
"CheckBox1"
runat
"server"
Checked='<%# (DataBinder.Eval(Container.DataItem,"IsTrue") is DBNull ?false:Eval("IsTrue")) %>' />
</
protected
void
RadGrid1_PreRender(
object
sender, EventArgs e)
{
if
(!Page.IsPostBack)
foreach
(GridDataItem item
in
RadGrid1.Items)
RadGrid1.MasterTableView.FilterExpression =
"[IsTrue] = True"
;
RadGrid1.MasterTableView.Rebind();
}