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
Needless to say:
I can install this fine on Windows 7 Ultimate, 64 bit.
This issue persists only with Server 2008.
Here is the error message upon installation.
I am having problems even installing the WebUI Suite on a Server 2008 R1 Box (64 bit). I have tried all types of boxes, and have the same problem everywhere: It tells me the ASP.NET Framework isn't installed and that v2.0 or higher is required.
I definitely have it installed -- but can't get past this
Understood. Thanks for your reply. Ultimately the best scenario is likely to open a new browser window on top of the WebDesktop with the navigation toolbars hidden.
Thank you, gentlemen.
Julia,
Yes that helps greatly... thank you.
How is one supposed to know this? I'm unable to find a clear document outlining the fundamentals of each control. Sure, I see the Method and Property list of FlyPostBackManager and WebButton, but the description of each Method/Property isn't always descriptive enough to learn what you stated above?
Hello,
No I do not experience the performance problem if I don't use WebPaneManager. The problem clearly lies with me using nested IFrames within a WebPane.
Please do the following to reproduce this issue:
- Create a page Default.aspx that contains a WebPaneManager and 1 pane, and loads Pane.aspx
- Create a MasterPage named MasterTab1.aspx that contains a WebTab control.
- Create a MasterPage named MasterTab2.aspx that contains a WebTab control
- Create a page Pane.aspx that uses masterpage layout MasterTab1.aspx
- Create a page Subtab.aspx that uses masterpage layout MasterTab2.aspx
- Dynamically create a WebTabItem in Pane.aspx that loads SubTab.aspx
- Dynamically create a WebTabItem in SubTab.aspx that loads Content.aspx (any static content)
----------------------------
Doing the above should replicate my problem. The problem lies in creating multiple nested IFrame windows within a WebPane. I'm not sure if the master page is contributing to this issue.
As I explained in my support ticket, I'll be happy to supply more code directly to a technician but not post it publicly.
I also have a live dev site that I can share with you to replicate the issue.
Alex
After further testing, I have determined that the WebDesktop responsiveness is only poor if a particular Window is open. This "problem window" is very complex, with nested IFrames. With the Window visible, many javascript function calls are slow (including maximize, minimize and close window functions) .... but with the window hidden, things are much more responsive.
Again, the performance in Firefox is GREAT.
This surely has to do with the complexity of my Window page. Attached is a zipped example to show you my structure. I respectfully ask that you take the time to overview them.
---------------------------------------------------
Scenario:
- WebDesktop shortcut opens Default.aspx (this file contains the WebPaneManager)
- WebPaneManager opens IFrame Navigation.aspx for navigational frame
- WebPaneManager opens IFrame Default.aspx
- Default.aspx loads inherits MasterPage MasterTabs.aspx (WebTab control is within it)
- The WebTab control is then populated with tabs. Each of those tabs opens another masterpage:
- MasterTabs2.aspx (WebTab control) is loaded within each tab. This is the second WebTab control within the page and provides tabs with a position=bottom
-----------------------------------------------------
The above scenario uses nested IFrames to accomplish having Tabs displayed at the top of the page (primary navigation - MasterTabs.aspx) and secondary navigation (MasterTabs2.aspx), while inheriting the MDSPageFirmUserTab class to allow for easy dynamic creation of tabs.
Screenshot is provided
I prefer using IFrames to InlineContent because I find them easier to manipulate.
This scenario is yielding poor performance. I hope to have an explanation and workaround. Thank you.
Thank you for your reply.
My code is nearly identical to yours. Instead of getting the instance of WebDesktopManager1 from the WebDesktopWindow using your code below....
function Button1_onclick() { var desktop = window.parent.ISGetObject("WebDesktopManager1"); var window2 = desktop.CreateWindow(); window2.Text = "Window2"; window2.Name = "Window2"; window2.ContentURL = "http://google.com"; window2.ContentMode = "UseIFrame"; window2.AllowMinimize = "No"; desktop.Windows.Add(window2); window2.Show(); }
I call parent.addWindow() which calls my own javascript function on the same page. This prevents me from having to add a javscript function on each WebDesktopWindow page that will need to open a new window.
My method:
function addWindow(name, text, imageURL, contentURL, width, height, allowMin, allowMax, allowClose, isMaximized, focusIfExists ) { var dm = ISGetObject("WebDesktopManager1"); var wnd = dm.GetWindow(name); if (wnd == null || focusIfExists == 'False') { wnd = new WebDesktopWindow(); wnd.Text = text; wnd.Name = name; wnd.ControlBoxImage = "is_webdesktop-16.gif"; wnd.ContentURL = contentURL; wnd.ContentMode = "UseIFrame"; wnd.AllowMinimize = allowMin; wnd.AllowMaximize = allowMax; wnd.AllowClose = allowClose; dm.Windows.Add(wnd); wnd.ResizeTo(width, height); if (isMaximized == 'True') { wnd.Maximize(); } wnd.Show(); } else { wnd.Activate(); wnd.Show(); } }
In either case, I am experience performance issues in Internet Explorer.
I SHOULD ADD, Internet Explorer also has poor performance when simply clicking on the Close icon (x) in the corner of each WebDesktopWindow. It's not a horrible delay -- but takes nearly 1 full second to close the window. Firefox does not have these performance issues.... and I don't have this delay when accessing the Developer Network UI.
Thank you in advance for any suggestions that you may have.
Your example demonstrates how to update the property of a Intersoft Control.
However, I still expreience problems if I'm trying to ACCESS the value of an Intersoft Control.
Suppose on a WebButton_Clicked FlyPostBack, I wish to write the value of WebInput.Text to a database. Currently, I am unable to do so..... All attempt at doing this result in an empty string being stored to the databse, despite the WebInput control clearly having a Text value.
Is there a special way to do this using FlyPostBackManager?
This issue has been resolved.
Problem was due to CSS formatting that impacted the WebCombo control
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