2012-02-02 11 views
1

私はそのダイアログにダイアログとUIタブを作成しました。そのダイアログでは、いくつかの内容を表として表示しています。 remove()メソッドでダイアログを閉じると、ダイアログが閉じられますが、再オープンすると、古い内容はタブに新しい内容とともに表示されます。ダイアログが閉じると古い内容も失われます。私は空()を使用していますが、私のコードは以下には役に立たないようです。を閉じても、再度開いても前の内容は削除されません

this.formOrderList = null; 
this.orderListDialogObject = $('<div id="mainDiv"></div>'); 
this.orderListTable = $('<div>' 
     + '<table id="orderListTable" class="ui-widget tblBorder" width="100%" border="0" cellspacing="1" cellpadding="2">' 
     + '<thead class="ui-widget-header" id="orderListHead">' + '<tr>' 
     + '<th><strong> Order# </strong></th>' 
     + '<th><strong> Symbol </strong></th>' 
     //+ '<th><strong> Exchange </strong></th>' 
     //+ '<th><strong> Market </strong></th>' 
     + '<th><strong> Time </strong></th>'    
     + '<th><strong> Order Type </strong></th>' 
     + '<th><strong> Side </strong></th>' 
     + '<th><strong> Volume </strong></th>' 
     + '<th><strong> Price </strong></th>' 
     + '<th><strong> Trigger Price </strong></th>' 
     + '<th><strong> Filled Volume </strong></th>' 
     + '<th><strong> Status </strong></th>' 
     + '<th><strong> Expiry Date </strong></th>' 
     + '<th><strong> Ref # </strong></th>' 
     + '<th><strong> Action </strong></th>' + '</tr>' + '</thead>' 
     + '<tbody id="orderListBody">' + '</tbody>' + '</table>' + '</div>'); 
this.orderListTabs = $('<div>' + '<ul>' 
     + '<li><a href="#pendingOrderList">Pending</a></li>' + '</ul>' 
     + '<div id="pendingOrderList">' + '</div>' + '</div>'); 
this.orderListDialogObject.appendTo("body"); 
this.show = function() { 
    $("#orderListBody", this.orderListTable).empty(); 
    this.orderListDialogObject.dialog({ 
     title : 'Order List', 
     width : 850, 
     height : 150,   
     close : function(ev, ui) { 
      $(this).remove(); 
      return false; 
      /*$(this).dialog('destroy').remove(); 
      return false;*/ 
     } 
    }); 
    this.orderListTabs.tabs(); 
    this.orderListTabs.appendTo(this.orderListDialogObject);   
    $("#pendingOrderList", this.orderListTabs).append(this.orderListTable); 

答えて

0

私は完全には理解していないが、あなたは、テーブルを削除する必要がある場合は、よくあなたはちょうど私がダイアログでテーブルを表示していたときに、それ

//Save a reference of the dialog 
var myDialog = this.orderListDialogObject.dialog({ 
    title : 'Order List', 
    width : 850, 
    height : 150,   
    close : function(ev, ui) { 
     //remove the table 
     $('table#orderListTable').remove(); 
     //close the dialog destroing it 
     myDialog.dialog("close"); 
    } 
}); 
+0

がよく問題がある削除することがあります。私はダイアログを閉じた後に再び開くと、古いconentsはまだ表示されます。例えば、tableAは次回にそれを開いたときに値「1 2 3」を持っていますが、このように「1 2 3 1 2 3」のように表示されています。 "1 2 3" –

+0

私は、私は再び、テーブルを表示していない再オープンするときに、私は、コードを試してみました。 –

+0

@Java_NewBieあなたはjsFiddle.netのサンプルを提供できますか? –

関連する問題