1

ラベルの編集を別のテキストに変更するには? 通常、ラベルは追加、編集、削除です。ユーザーがこのリンクをクリックすると、目的として編集を表示または表示に変更します。編集フォームに移動しますが、すべてのフィールドは読み取り専用 (ユーザーはデータを編集できません) であるため、タイトルが編集されていると奇妙に見えます

4

1 に答える 1

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').dialog("option","title",title); で確認できます。ラベルが変わります

于 2012-12-17T02:50:00.410 に答える