JQuery Flexigrid更改标签编辑

时间:2011-10-18 01:35:46

标签: jquery flexigrid

如何将标签编辑更改为其他文字?通常标签是添加,编辑,删除。当用户点击此链接时,我将更改编辑以查看或显示为我的目标,它将转到编辑表单,但所有字段都是只读的(用户无法编辑数据),因此在编辑标题时看起来很奇怪

1 个答案:

答案 0 :(得分:0)

也许这可以帮助你

    function conditionalDialog(mode){
    var theButtons = {};
    var theautoOpen = true;
    var title = "";

    if (mode=='first'){
        theautoOpen = false;    }
    if (mode=='Add'){
        title = "Add Product Record";
        theButtons["Save"] = function() { simpan('add'); Tambah(); };
        theButtons["Close"] = function() { $(this).dialog("close"); };
    }else{
        title = "Edit Product Record";
        theButtons["Save"] = function() { simpan('edit'); $(this).dialog("close"); };
        theButtons["Cancel"] = function() { $(this).dialog("close"); };
    }
    $('#form').dialog("option","title",title);
    $('#form')
    .dialog({
        autoOpen: theautoOpen,
        width: 600, 
        buttons: theButtons,
        show:"slide"
    }); 
}   

你可以看到$('#form')行。对话框(“选项”,“标题”,标题); 它会改变标签