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
I want to localize the contextmen of webdesktop
auto arrange icons
show esktop icons
cascading
...
etc
In this release, the context menu is implemented on three objects listed in the following: Desktop; Window; and TaskBar.
The text for the context menu items can also be customized in the TextSettings, where all text configurations are stored. The collections of TextSettings are: BusyText; CloseText; InProgressText; LoadingText; MaximizeText; MinimizeText; and RestoreText.
The context menu on Window object is not available yet in TextSettings collection. In order to modify the text of Window object context menu, I suggest you to take the advantage of “extensibility” feature of WebDesktopManager.
WebDesktopManager and entire WebDesktop.NET components provide a solid Web User Interface platform engineered with extensibility in mind. In the Context Menu area, developers can extend the menu further to meet application-specific scenarios.
It was made possible through the OnContextMenu client side event where you can handle and put your codes to perform additional logics to the menu in the context. The OnContextMenu property can be found ClientSideEvents property which contains all available client side events of DesktopManager.
OnContextMenu event provides following parameters:
Following sample demonstrates how to modify “Auto Arrange Icons” text in Window object context menu.
function WebDesktopManager1_OnContextMenu(controlId, objectType, contextObject, menu) { var WebDesktopManager1 = ISGetObject(controlId); if (objectType == "Desktop") { menu.Items.GetNamedItem("mnuAutoArrange").Text = "[your text in here]"; } return true; }
Hope this helps.
It is greate
Glad to hear that the script helps.
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.
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