...
- Telerik.Windows.Controls.dll
- Telerik.Windows.Data.dll
- Telerik.Windows.Documents.dll
- Telerik.Windows.Documents.FormatProviders.Html.dll
- Telerik.Windows.Documents.FormatProviders.OpenXml.dll
- Telerik.Windows.Documents.FormatProviders.Rtf.dll
- Telerik.Windows.RadUploadHandler.dll
Assemblies That Need to be Added
...
- Whether you have done an OR sync on your e-Business bin or not, you should change the .NET framework to 4.8. Search for "targetFramework" in the web.config and update it to target .NET 4.8, like this: <compilation debug="true" targetFramework="4.8">
...
Update the web config to update the binding redirect to the 2020 version:
Code Block title
...
Web Config collapse true <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
...
<dependentAssembly>
...
<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121FAE78165BA3D4" culture="neutral" />
...
<bindingRedirect oldVersion="2015.2.623.40" newVersion="2020.2.617.45" />
...
</dependentAssembly>
...
</assemblyBinding>
...
</runtime>
3. Add the following key
- Add this key: <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
...
- Save and close your web.config.
Test
Now that your web.config and bin directory are updated you must test the site.
...
Another common error observed is popup dialogs getting distorted and UI disturbed due to the same. Perform the following changes for the same.
- Locate your eBusiness css style sheet (eBusinessStyles.css ) in the e-Business installed path. For Non-CMS site , it will be available in Include Folder\eBusinessStyles.css . For CMS site, the below changes will need to be done in respective css file.The name of the css style sheet might be different in your installed path
Open the file and add below CSS changes at the end of file:
Code Block language css title CSS changes collapse true .rwWindowContent > div {
...
width: inherit !important;
...
height: inherit !important;
...
}
...
.RadWindow .rwIcon{
...
margin-top: 8px !important;
...
top: 0 !important;
...
}
...
.RadWindow .rwTable {
...
height: 100% !important;
...
}
...
.popup-win-adminedit-Contactinfo{
...
height:auto !important;
...
}
...
- Locate
...
- the data_from.css file in the e-Business installed path. (Folder path for Non CMS <eBusiness installed path\App_Themes\Aptify\)
Open the file and update Line Number 3067
...
- and the following add width details:
#ctl00_MainContentArea_Profile1_radwindowProfileImage_C{
height: 589px !important;
width: 478px !important;
}
...
- Save and close the file.
- Restart the IIS.