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

@ -4,6 +4,7 @@
- fixed #10488: Map.gif is missing for Map wobject
- fixed #10553: WebGUI vulnerable to CSRF attacks
- fixed #10607: snippets empty
- fixed #10601: Edit field in Thing: no submit button
7.7.13
- fixed #10574: Creating Calendar Entry

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 } ]
} );