iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
<location path="ISRes.axd"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location>
I still have some IE11 issues on the deployment server regarding WebFlyPostManager and WebContextMenu, but I will try to solve those before bugging IntersoftPT tech support any further.Thank you for all the help.
<system.webServer> <validation validateIntegratedModeConfiguration="false"/> <handlers> <add name="ISChart.axd_GET, POST" path="ISChart.axd" verb="GET, POST" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" preCondition="integratedMode"/> <add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/> <add name="WebFileUploaderHttpHandler.axd_GET" path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode"/> </handlers> <modules> <add name="WebFileUploaderHttpModule_GET" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor" /> </modules> </system.webServer>
Ok I switch to SmartWebResources fully:
<add key="ISNet.WebUI.ISRes_Registered" value="true" /> <add key="ISNet.WebUI.v3_0_5000.GroupCssStyles" value="true" /> <add key="ISNet.WebUI.WebTreeView.v1_0_1500.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebAqua.v2_0_1000.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebInput.v4_0_7200.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebTreeView.v1_0_1500.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebTextEditor.v2_0_1000.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebScheduler.v4_0_1000.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebGrid.v9_0_7200.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebEssentials.v3_0_1000.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebDesktop.v4_0_7200.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebCombo.v6_0_7200.EnableWebResources" value="Always"/> <add key="ISNet.WebUI.WebDesktop.V4_0_7200.RenderingMode" value="HTML5" /> <add key="ISNet.WebUI.WebGrid.v9_0_7200.RenderingMode" value="HTML5" /> <add key="ISNet.WebUI.WebTreeView.v1_0_1500.RenderingMode" value="HTML5" /> <add key="ISNet.WebUI.WebCombo.v6_0_7200.RenderingMode" value="HTML5" /> <add key="ISNet.WebUI.WebInput.v4_0_7200.RenderingMode" value="HTML5" /> <add key="ISNet.WebUI.v3_0_5000.OptimizeCss" value="true" /> <add key="ISNet.WebUI.v3_0_5000.OptimizeCssName" value="true" /> <add key="ISNet.WebUI.WebDesktop.V4_0_2007.XmlCompressionEnabled" value="true" /> <add key="ISNet.WebUI.WebGrid.V9_0_7200.XmlCompressionEnabled" value="true" /> <add key="ISNet.WebUI.WebInput.v4_0_7200.XmlCompressionEnabled" value="true" /> <add key="ISNet.WebUI.WebCombo.v4_0_7200.XmlCompressionEnabled" value="true" />
BUT IE11 does not work. It manages to pass the login screen that actully has a WebDialogBox, but when it enters the page containing the treeview (Profiler.aspx) and web-combos it fails. Se attahced tow debug images. the A-image (NETWORK) doesnt show anything wrong I think. But take a look at B-image (CONSOLE). IE11 doesnt seem to find the individual Javascript functions in the SmartResources, althoug it GETs the .js files successfully. How come?
PS: After I removed compleetly CommonLibrary folder. IE11 stops on the first request to Intersoft resources:script>InitWebDialogBox('c_wdlgLogin') 'script' is undefinedBut Firefox and Chrome still work 100% ok.So the problem is that IE11 refuses to use the SmartWebResources, while Chrome and Firefox can use them when browsing the same web site. How can that be?
I can send you a login to the system if you provide me with avalid intersoftpt emal address. Then you can test for your self.Regards TJ
Find attached the results from IE11 Dev. Tool. It seems that when browsing from IE11 the scripts in CommonLibary can't be found...am I right? But why is that happening for IE11 only but not in Chrome and FireFox? ...
So I added all the stuff from your <appSettings> that where missing in mine (all those script directory refs. and EnableWebResources=never). After that the tree view paints correctly but is not sensing the mouse, when hovering over tree view items or trying to expload an item.In the IE11 Dev Tool I now get this error only: "SCRIPT438: Object doesn't support property or method 'attachEvent'""File: WebTreeView.js, Line: 1, Column: 93893"We are using .NET framework v4.0.304129 on both dev. machine and deployment server.
PS: If it matter, When I deploy I use "Publish Web site" from Visual Studio 2010 that compiles and copy the website to a "precompiled" folder. I copy the content of that folder to the deployment server. Done so for many years with the app with previous version of WebUI components without any problems at all.TJ
Regards TJ
<ISWebDesktop:WebGroupPane Name="groupPaneContent"> <Panes> <ISWebDesktop:WebPane HeaderVisible="No" Name="paneNavigator" Height="Custom" HeightValue="40px" AllowResize="No" ContentPadding-Top="1" ContentScrollable="False"> <ContentTemplate>
Hi and thank you for your response.I found the problem but I don't understand why the change is needed.I had to add this into the header section of the html file.
<style type="text/css"> html, body, form { height: 100%; width: 100%; margin: 0px; padding: 0px; } </style>
But I already had this code in a CSS flie and included that in the header section such<link href="~/Css/mainStyle.css" rel="stylesheet" type="text/css" />But if I do it that way the tree-view failure hapens when browsing in IE11.To be sure I have even tried to put nothing else than this needed style into the css file. But even then the problem still happen.
mainStyle.css:
html, body, form { height: 100%; width: 100%; margin: 0px; padding: 0px; }
TJ
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname