You can use the many cell types in the FarPoint.Web.Spread.Extender assembly to provide controls that are available as ASP.NET AJAX extender controls. The extender controls enhance the client capabilities of other controls.
For more information about extender cell types, refer to Working with ASP.NET AJAX Extender Cell Types.
The various cell types that use ASP.NET AJAX extender controls include:
The AJAX Control Toolkit 15.1 stopped supporting ToolkitScriptManager and now supports the standard ScriptManager. For more information, refer to http://devexpress.com/act.
Spread supports multiple versions of AJAX so the oldest version is used in the development environment. If you use AJAX Control Toolkit 15.1 when deploying to a server, the following configuration information about assembly binding must be added so that the web server loads the correct version.
Web.config |
Copy Code
|
---|---|
<configuration> <system.web> </system.web> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" culture="neutral"/> <bindingRedirect oldVersion="3.0.30930.28736" newVersion="15.1.2.0" /> </dependentAssembly> </assemblyBinding> </runtime> </configuration> |