Thingy: edit/add field popup doesn't fit all options

This commit is contained in:
Yung Han Khoe 2008-04-06 18:42:15 +00:00
parent f5c3c977ae
commit af7fe6be40
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@
- fixed: Thingy: field types not in alphabetical order - fixed: Thingy: field types not in alphabetical order
- fixed: Thingy: Text, File and Hidden field types listed twice (Yung Han Khoe) - fixed: Thingy: Text, File and Hidden field types listed twice (Yung Han Khoe)
- fixed: Thingy: subtext is not displayed - fixed: Thingy: subtext is not displayed
- fixed: Thingy: edit/add field popup doesn't fit all options
7.5.9 7.5.9
- fixed: Collaboration System attachments follow site's max size instead of CS's - fixed: Collaboration System attachments follow site's max size instead of CS's

View file

@ -161,7 +161,7 @@ function editListItem(url,fieldId) {
function optionalFields() { function optionalFields() {
initOptionalFields("edit_"+fieldId+"_Dialog",fieldId); initOptionalFields("edit_"+fieldId+"_Dialog",fieldId);
} }
editFieldDialog = new YAHOO.widget.Dialog("edit_"+fieldId+"_Dialog", { width:"460px", visible:false, draggable:true, close:true, fixedcenter:true, zIndex:11001, height: "400px", editFieldDialog = new YAHOO.widget.Dialog("edit_"+fieldId+"_Dialog", { width:"460px", visible:false, draggable:true, close:true, fixedcenter:true, zIndex:11001, height: "420px",
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true }, buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
{ text:"Cancel", handler:handleCancel } ] { text:"Cancel", handler:handleCancel } ]
} ); } );
@ -282,7 +282,7 @@ function initAddFieldDialog() {
}; };
var addFieldDialog = new YAHOO.widget.Dialog("addDialog", { width:"460px", visible:false, var addFieldDialog = new YAHOO.widget.Dialog("addDialog", { width:"460px", visible:false,
draggable:true, close:true, fixedcenter:true, zIndex:11002, height: "400px", draggable:true, close:true, fixedcenter:true, zIndex:11002, height: "420px",
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true }, buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
{ text:"Cancel", handler:handleCancel } ] { text:"Cancel", handler:handleCancel } ]
} ); } );