如何从jqgrid添加表单中删除取消按钮?

时间:2013-03-15 09:37:29

标签: jqgrid

jqgrid添加对话框有两个按钮(提交和取消)。单击取消按钮时将显示一条消息。该消息框有3个按钮(是,否和取消)。现在我想删除取消按钮。任何可能性........?

抱歉我的英语不好。 谢谢。

jqgrid的样本编码

<sjg:grid id="gridtable"
caption="Customer List"
dataType="json"
href="%{remoteurl}"
pager="true"
gridModel="customerList"
rowNum="10"
autowidth="true"
editurl="%{editurl}"
editinline="false"
navigator="true"
navigatorAdd="true"
navigatorAddOptions="{
        viewPagerButtons: false,
        recreateForm: true,
        checkOnUpdate: true,
        closeAfterAdd: true,
        height: 275,
        width: 600,
        draggable: false,
        resizable: false
    }"
navigatorDelete="true"
navigatorEdit="true"
navigatorRefresh="true"
navigatorSearch="true"
navigatorEditOptions="{
        viewPagerButtons: false,
        recreateForm: true,
        checkOnUpdate: true,
        closeAfterEdit: true,
        height: 275,
        width: 600,
        draggable: false,
        resizeable: false
    }"
navigatorDeleteOptions="{ checkOnUpdate: true}"
navigatorViewOptions="{
        viewPagerButtons: false,
        recreateForm: true,
        checkOnUpdate: true,
        height: 225,
        width: 620,
        draggable: false,
        resizeable: false
    }"
navigatorSearchOptions="{
        sopt:['eq','ne','lt','gt','in','ni','cn','nc'],
        closeAfterSearch: true
    }"
navigatorView="true"
rownumbers="true"
rowList="10,20,30"
viewrecords="true"              

&GT;

非常感谢你。

这里我指的是取消按钮 enter image description here

如何删除此取消按钮?

我只需要是和没有按钮。

2 个答案:

答案 0 :(得分:2)

使用网格API如何可能我不知道但是,使用jquery你可以通过以下方式隐藏这个按钮: $(“#gridtable #cNew).css({'display':'none'});

'#cNew'是该按钮的id或者您可以通过右键单击该按钮获取Cancle按钮的id并在mozila webbrowser中选择inspect元素或使用firebug获取该按钮的id然后用#cNew替换该id

答案 1 :(得分:0)

我认为您可以将它应用于每个表单添加,编辑等。

隐藏按钮取消

onInitializeForm: function($form) {
$form.parent().find('#cData').hide();
}

或者如果您想要提交隐藏按钮

beforeShowForm: function ($form) {
$form.parent().find('#sData').hide();
},