Reputation: 3979
please see this picture first
telerik sample is in this address Telerik RadGrid Sample
I Have 3 questions
How can I add Add new record button for Insert like sample
How change text of it ?
How can I change text of Edit ? (telerik:GridEditCommandColumn)
How can I have Refresh button like sample ?
How change text of it ?
Upvotes: 0
Views: 1152
Reputation: 11154
How can I add Add new record button for Insert like sample
<MasterTableView CommandItemDisplay="Top">
<CommandItemSettings ShowAddNewRecordButton="true" />
.....
.....
</MasterTableView>
How change text of it ?
<MasterTableView CommandItemDisplay="Top">
<CommandItemSettings ShowAddNewRecordButton="true" AddNewRecordText="Your Text comes here" />
</MasterTableView>
How can I change text of Edit ?
<telerik:GridEditCommandColumn EditText="YourEditText"></telerik:GridEditCommandColumn>
How can I have Refresh button like sample ?
<MasterTableView CommandItemDisplay="Top">
<CommandItemSettings ShowRefreshButton="true" />
</MasterTableView>
How change text of it ?
<MasterTableView CommandItemDisplay="Top">
<CommandItemSettings ShowRefreshButton="true" RefreshText="Youre Refrsh Text" />
</MasterTableView>
Let me know if any concern.
Upvotes: 4