Fixed a binding issue with FormsElementDriver.

This fixes the issue where form elements whose drivers inherit from FormsElementDriver would not persist their changes.

Fixes #6100, #6035
This commit is contained in:
Sipke Schoorstra
2015-12-03 22:47:15 +01:00
parent 37bbafede6
commit 8693b68ac7
26 changed files with 129 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
using Orchard.Forms.Services;
namespace Orchard.Layouts.Services {
public interface IFormsBasedElementServices : IDependency
{
IFormManager FormManager { get; }
ICultureAccessor CultureAccessor { get; }
}
}