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
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
protected
void
Page_Load(
object
sender, EventArgs e)
{
GridFilterMenu menu = RadGrid1.FilterMenu;
foreach
(RadMenuItem item
in
menu.Items)
//change the text for the "StartsWith" menu item
if
(item.Text ==
"StartsWith"
)
item.Text =
"Starts_With"
;
}
Hello Jayesh,
Is it possible to change the text of the meniu options just for specific columns and not for the whole grid? Thanks, Radu P.S.: Both server side and client side solutions are accepted.