From c9946708b5135fc5cba78c282cc345d4cd948c7d Mon Sep 17 00:00:00 2001 From: Yung Han Khoe Date: Fri, 14 Nov 2008 17:31:22 +0000 Subject: [PATCH] fixed #9076: Thingy broken in latest beta, Save and Close buttons missing from Add/Edit Field dialogs --- docs/changelog/7.x.x.txt | 2 ++ www/extras/wobject/Thingy/thingy.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 57748b44e..e2c8eb530 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -4,6 +4,8 @@ - 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. - 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 - improved performance of file uploads diff --git a/www/extras/wobject/Thingy/thingy.js b/www/extras/wobject/Thingy/thingy.js index c91ba32c9..6d0fdde70 100644 --- a/www/extras/wobject/Thingy/thingy.js +++ b/www/extras/wobject/Thingy/thingy.js @@ -162,6 +162,7 @@ function editListItem(url,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", + autofillheight:false, buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true }, { text:"Cancel", handler:handleCancel } ] } ); @@ -289,6 +290,7 @@ 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, buttons : [ { text:"Submit", handler:handleSubmit, isDefault:true }, { text:"Cancel", handler:handleCancel } ] } );