Skip to content

Commit 083d49c

Browse files
author
mac
committed
Fixed issue with saving pages
1 parent 2ea1b6c commit 083d49c

10 files changed

Lines changed: 13997 additions & 4 deletions

WebApplication/Admin/Controls/Fields/AssociationAutoSuggest.ascx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public override void SetValue(object values)
124124
if ((values == "") || (!values.ToString().StartsWith("[")))
125125
return;
126126

127-
if (IsPostBack && !BasePage.IsAjaxRequest)
127+
if (IsPostBack)
128128
{
129129
SaveToDB(values.ToString());
130130
}

WebApplication/Admin/Controls/Fields/AssociationCheckBoxList.ascx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public override void SetValue(object values)
120120

121121
SetSelectedIds(values.ToString());
122122

123-
if (IsPostBack && !BasePage.IsAjaxRequest)
123+
if (IsPostBack)
124124
{
125125
SaveToDB(values.ToString());
126126
}

WebApplication/Admin/Controls/Fields/AssociationDragDrop.ascx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public override void SetValue(object value)
6767
if (value == "")
6868
return;
6969

70-
if (IsPostBack && !BasePage.IsAjaxRequest)
70+
if (IsPostBack)
7171
{
7272
SaveToDB(value.ToString());
7373
}

WebApplication/Admin/Controls/Fields/AssociationDropDownList.ascx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public override void SetValue(object values)
116116

117117
SetSelectedIds(values.ToString());
118118

119-
if (IsPostBack && !BasePage.IsAjaxRequest)
119+
if (IsPostBack)
120120
{
121121
SaveToDB(values.ToString());
122122
}
21.2 KB
Binary file not shown.

WebApplication/bin/System.Reactive.Core.xml

Lines changed: 2878 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebApplication/bin/System.Reactive.Interfaces.xml

Lines changed: 336 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebApplication/bin/System.Reactive.Linq.xml

Lines changed: 10779 additions & 0 deletions
Large diffs are not rendered by default.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)