fixed #9076: Thingy broken in latest beta, Save and Close buttons missing from Add/Edit Field dialogs
This commit is contained in:
parent
1d5859631c
commit
c9946708b5
2 changed files with 4 additions and 0 deletions
|
|
@ -4,6 +4,8 @@
|
||||||
- Made syndicated content asset use cache.
|
- Made syndicated content asset use cache.
|
||||||
- fixed #8837: When you move an asset to a new version, only the current version is moved, instead of all of them.
|
- fixed #8837: When you move an asset to a new version, only the current version is moved, instead of all of them.
|
||||||
- Added version tag modes: multiple tags per user, single tag per user, site wide version tag and auto commit (thanks to Long Term Results B.V.)
|
- Added version tag modes: multiple tags per user, single tag per user, site wide version tag and auto commit (thanks to Long Term Results B.V.)
|
||||||
|
- fixed #9076: Thingy broken in latest beta, Save and Close buttons missing
|
||||||
|
from Add/Edit Field dialogs (SDH Consulting Group).
|
||||||
|
|
||||||
7.6.3
|
7.6.3
|
||||||
- improved performance of file uploads
|
- improved performance of file uploads
|
||||||
|
|
|
||||||
|
|
@ -162,6 +162,7 @@ function editListItem(url,fieldId) {
|
||||||
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: "420px",
|
editFieldDialog = new YAHOO.widget.Dialog("edit_"+fieldId+"_Dialog", { width:"460px", visible:false, draggable:true, close:true, fixedcenter:true, zIndex:11001, height: "420px",
|
||||||
|
autofillheight:false,
|
||||||
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
|
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
|
||||||
{ text:"Cancel", handler:handleCancel } ]
|
{ text:"Cancel", handler:handleCancel } ]
|
||||||
} );
|
} );
|
||||||
|
|
@ -289,6 +290,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: "420px",
|
draggable:true, close:true, fixedcenter:true, zIndex:11002, height: "420px",
|
||||||
|
autofillheight:false,
|
||||||
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
|
buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true },
|
||||||
{ text:"Cancel", handler:handleCancel } ]
|
{ text:"Cancel", handler:handleCancel } ]
|
||||||
} );
|
} );
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue