Hello,
I have server-side kendo grid
I need to put my text in the standard control buttons inside the grid (see the attached picture)
Any possible help would be appreciated a.s.a.p.
Thanks
Shabtai
I have server-side kendo grid
01.
<
div
class
=
"k-rtl"
>
02.
@(Html.Kendo().Grid<
BO.UserPemissions
>()
03.
.Name("UserPemissionsGrid").Events(e => e.DataBound("UserPemissionsRowDataBound"))
04.
.Columns(columns =>
05.
{
06.
columns.Bound(o => o.UserId).Title("ת.ז.");
07.
columns.Bound(o => o.PermittedProgramGroup).Title("קבוצות הרשאה");
08.
columns.Bound(o => o.PermittedProgramId).Title("תוכניות מורשות");
09.
columns.Command(command => command.Destroy()).Width(150);
10.
})
11.
.Pageable(pager => pager.PageSizes(true))
12.
.ToolBar(toolBar => { toolBar.Create(); toolBar.Save(); })
13.
.Sortable()
14.
.Scrollable()
15.
.Editable(editable => editable.Mode(GridEditMode.InCell))
16.
.DataSource(dataSource => dataSource.Ajax().Model(model => model.Id("UserId")).Read(read => read.Action("UserPemissionsRowDataRead", "Home"))
17.
.Update(update => update.Action("UserPemissionsRowDataUpdate", "Home"))
18.
.Create(update => update.Action("UserPemissionsRowDataCreate", "Home"))
19.
.Destroy(update => update.Action("UserPemissionsRowDataDestroy", "Home"))
20.
)
21.
)
22.
</
div
>
Any possible help would be appreciated a.s.a.p.
Thanks
Shabtai