I have radgrid being used in sharepoint webpart. protected void RadGridCommunityList_Init(object sender, EventArgs e)i have customized the list of filter to limited so that will be easy for users.
now i need help localizing the radgrid.
1. Filter list how to display them in the local language
this is the code for filter menu
2. Tool tips for everything in the Rad grid. how to localize them where should i write the code and which variable and how please advise....
now i need help localizing the radgrid.
1. Filter list how to display them in the local language
this is the code for filter menu
protected
void
RadGridCommunityList_Init(
object
sender, EventArgs e)
{
GridFilterMenu menu = RadGridCommunityList.FilterMenu;
int
i = 0;
while
(i < menu.Items.Count)
{
if
(menu.Items[i].Text ==
"NoFilter"
|| menu.Items[i].Text ==
"Contains"
|| menu.Items[i].Text ==
"EqualTo"
|| menu.Items[i].Text ==
"GreaterThan"
|| menu.Items[i].Text ==
"LessThan"
|| menu.Items[i].Text ==
"StartsWith"
)
{
i++;
}
else
{
menu.Items.RemoveAt(i);
}
}
}
2. Tool tips for everything in the Rad grid. how to localize them where should i write the code and which variable and how please advise....