DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB

Fixes 26360 (Content doesn't load on clean install 4.1b2)
Fixes some tree, pickers and live editing issues.


[TFS Changeset #64360]
This commit is contained in:
Shandem
2010-03-01 12:55:01 +00:00
parent f3b5e40a0c
commit 6026913831
17 changed files with 98 additions and 286 deletions

View File

@@ -4,6 +4,8 @@ using System.Linq;
using System.Text;
using umbraco.uicontrols.TreePicker;
using umbraco.interfaces;
using System.Web.UI;
using umbraco.presentation;
namespace umbraco.editorControls
{
@@ -44,7 +46,10 @@ namespace umbraco.editorControls
{
base.OnLoad(e);
if (!Page.IsPostBack)
//need to check if this is an async postback in live editing, because if it is, we need to set the value
if ((ScriptManager.GetCurrent(Page).IsInAsyncPostBack
&& UmbracoContext.Current.LiveEditingContext.Enabled)
|| !Page.IsPostBack)
{
ItemIdValue.Value = StoredItemId != -1 ? StoredItemId.ToString() : "";
}
@@ -68,7 +73,6 @@ namespace umbraco.editorControls
public void Save()
{
//_text = helper.Request(this.ClientID);
if (ItemIdValue.Value.Trim() != "")
_data.Value = ItemIdValue.Value.Trim();
else