kendo ui网格弹出隐藏按钮

问题描述 投票:0回答:1

如何删除剑道模板弹出窗口上的Update / Cancel按钮?并添加我自己的自定义按钮?

Demo in Dojo

jquery kendo-ui kendo-grid
1个回答
0
投票

请尝试这样做可能对您有帮助但这不是为nOrmal用户隐藏按钮。

var is_editable = false;
    var role = "<?php echo setting('admin.Admin_role_id') ?>";

    @if(Auth::user()->role_id == setting('admin.Admin_role_id', 1))

    is_editable = true;

    @endif

    editing: {
                mode: "popup",
                allowAdding: is_editable,
                allowDeleting: is_editable,
                allowUpdating: is_editable,
                popup: {
                    title: "Employee Attendance  Information",
                    showTitle: true,
                    id: "employees->id",
                    position: {
                        my: "top",
                        at: "top",
                        of: window
                    }
                }
            },
© www.soinside.com 2019 - 2024. All rights reserved.