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
<
asp:TextBox
ID
=
"TextBox1"
runat
"server"
></
>
asp:Button
"Button1"
Text
"Button"
OnClick
"Button1_Click"
/>
telerik:RadGrid
"RadGrid1"
MasterTableView
. . .
</
protected
void
Button1_Click(
object
sender, EventArgs e)
{
string
text = TextBox1.Text;
foreach
(GridDataItem item
in
RadGrid1.MasterTableView.Items)
(GridColumn col
RadGrid1.MasterTableView.Columns)
if
(text == item[col.UniqueName].Text)
TableCell cell = item[col.UniqueName];
cell.BackColor = Color.Red;
}