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
Hi,
One of our customers wishes to use and IPad to view an application developed using the WebDesktop. When a user double clicks on a shortcut to launch a window, the ipad zooms in as opposed to launching the window. Is there an option when using the webdesktop to allow a single click launch the window.
Thanks,
Dermot
Unfortunately, this could not be done by single click via property because it is not available right now. You need to do this manually. I think you can use client side event like OnShortcutSelected to do that. To open a window from client side, you can find the tutorial in our web desktop documentation. Below sample for launch a window when the shortcut is selected.
function WebDesktopManager1_OnShortcutSelected(controlId, shortcut) { var WebDesktopManager1 = ISGetObject(controlId); var dm = ISGetDesktopManager(); if (shortcut.Name == "scWebPad") { wnd = new WebDesktopWindow(); wnd.Text = "WebPad Page"; wnd.Name = "wndWebPad"; wnd.ControlBoxImage = "is_webdesktop-16.gif"; wnd.ContentURL = "WebPad.aspx"; wnd.ContentMode = "UseIFrame"; wnd.AllowMinimize = "No"; wnd.AllowMaximize = "No"; dm.Windows.Add(wnd); wnd.Show(); wnd.ResizeTo(600, 400); shortcut.Select(); wnd.MoveToCenterDesktop(); } return true; }
Hope this helps.
Regards,
Hendrik
Hi Hendrik,
This worked perfectly.
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