Hi everybody, I have a problem. I have a radgrid, I create a link button in this radgrid. When I click link button,"Update" link button and "Cancel" link button appears. How to change "Update" text and "Cancel" text?
Have you any ideas? Thanks!
Have you any ideas? Thanks!
<telerik:RadGrid runat="server" ID="rgdThongTin" Height="350px" Width="100%" AutoGenerateColumns="false" GridLines="None" onneeddatasource="rgdThongTin_NeedDataSource" ondeletecommand="rgdThongTin_DeleteCommand" onupdatecommand="rgdThongTin_UpdateCommand" oninsertcommand="rgdThongTin_InsertCommand"> <MasterTableView DataKeyNames="STT" AllowMultiColumnSorting="True" Width="100%"> <Columns> <telerik:GridBoundColumn DataField="STT" UniqueName="STT" HeaderText="STT" Visible="false"> <HeaderStyle Width="0px" HorizontalAlign="Left" VerticalAlign="Middle" Font-Bold="True" /> <ItemStyle Width="0px" HorizontalAlign="Left" VerticalAlign="Middle" /> </telerik:GridBoundColumn> <telerik:GridEditCommandColumn ButtonType="LinkButton" UniqueName="EditCommandColumn" EditText="Cáºp nháºt"> <HeaderStyle Width="100px" HorizontalAlign="Left" VerticalAlign="Middle" Font-Bold="True" /> <ItemStyle Width="100px" HorizontalAlign="Left" VerticalAlign="Middle" /> </telerik:GridEditCommandColumn> </Columns> <EditFormSettings CaptionFormatString="Edit details for employee with" CaptionDataField="MA_SO"> </EditFormSettings> </MasterTableView> <ClientSettings AllowColumnsReorder="true" EnableRowHoverStyle="true"> <Selecting AllowRowSelect="true" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> <ClientEvents OnRowDblClick="RowDblClick" /> </ClientSettings> </telerik:RadGrid>