Domanda

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 ?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top