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
this
.radGridView1.TableElement.GridViewElement.GroupPanelElement.Text =
"add a new row"
;
public
partial
class
Form1 : Form
{
Form1()
InitializeComponent();
}
private
void
Form1_Load(
object
sender, EventArgs e)
DataTable listTable =
new
DataTable();
listTable.Columns.Add(
"Name"
);
"Busy"
"Id"
listTable.Rows.Add(
"Saraha"
,
"No"
, 1);
"Joe"
, 2);
"Lisa"
"Yes"
, 3);
"George"
, 4);
"Mary"
, 5);
"Janet"
, 6);
.radGridView1.DataSource = listTable;
RadGridLocalizationProvider.CurrentProvider =
CustomLocalizationProvider();
CustomLocalizationProvider : RadGridLocalizationProvider
override
string
GetLocalizedString(
id)
switch
(id)
case
RadGridStringId.AddNewRowString:
return
"Your Add new Row Text"
RadGridStringId.GroupingPanelDefaultMessage:
"Your Grouping Panel Default Message Text"
base
.GetLocalizedString(id);