Refix rendering problem with add/edit field dialog in Thingy.

This commit is contained in:
Colin Kuskie 2009-07-06 22:25:12 +00:00
parent d6400799aa
commit 9c698f31ff
2 changed files with 5 additions and 4 deletions

View file

@ -171,8 +171,8 @@ function editListItem(url,fieldId,copy) {
dialogId = dialogId + '_copy';
}
editFieldDialog = new YAHOO.widget.Dialog(dialogId, { width:"460px", visible:false, draggable:true,close:true, fixedcenter:true, zIndex:11001, height: "420px",
autofillheight:false,
editFieldDialog = new YAHOO.widget.Dialog(dialogId, { width:"460px", visible:false, draggable:true,close:true, fixedcenter:true, zIndex:11001, height: "430px",
autofillheight:null,
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
{ text:"Cancel", handler:handleCancel } ]
} );
@ -307,8 +307,8 @@ function initAddFieldDialog() {
};
var addFieldDialog = new YAHOO.widget.Dialog("addDialog", { width:"460px", visible:false,
draggable:true, close:true, fixedcenter:true, zIndex:11002, height: "420px",
autofillheight:false,
draggable:true, close:true, fixedcenter:true, zIndex:11002, height: "430px",
autofillheight:null,
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
{ text:"Cancel", handler:handleCancel } ]
} );