Question

please see this picture first enter image description here

telerik sample is in this address Telerik RadGrid Sample

I Have 3 questions

  1. How can I add Add new record button for Insert like sample

    How change text of it ?

  2. How can I change text of Edit ? (telerik:GridEditCommandColumn)

  3. How can I have Refresh button like sample ?

    How change text of it ?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top