﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - webdesktop contextmenu localize </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webdesktop-contextmenu-localize/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>webdesktop contextmenu localize </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webdesktop-contextmenu-localize/</link><pubDate>Mon, 29 Mar 2010 04:26:02 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Glad to hear that the script helps.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;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.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>webdesktop contextmenu localize </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webdesktop-contextmenu-localize/</link><pubDate>Mon, 29 Mar 2010 03:08:07 GMT</pubDate><dc:creator>hamdy.ghanem</dc:creator><description>&lt;p&gt;It is greate&lt;/p&gt;</description></item><item><title>webdesktop contextmenu localize </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webdesktop-contextmenu-localize/</link><pubDate>Sun, 28 Mar 2010 22:42:33 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;In this release, the context menu is implemented on three objects listed in the following: Desktop; Window; and TaskBar.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;The text for the context menu items can also be customized in the &lt;strong&gt;TextSettings&lt;/strong&gt;, where all text configurations are stored. The collections of TextSettings are: BusyText; CloseText; InProgressText; LoadingText; MaximizeText; MinimizeText; and RestoreText.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;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.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;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.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;It was made possible through the &lt;strong&gt;OnContextMenu&lt;/strong&gt; 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 &lt;strong&gt;ClientSideEvents&lt;/strong&gt; property which contains all available client side events of DesktopManager.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;OnContextMenu event provides following parameters:&lt;/span&gt;&lt;/p&gt;
&lt;ul style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;li&gt;DesktopManagerID, the control ID of the WebDesktopManager instance.&lt;/li&gt;&lt;li&gt;Object Type, a string representing the type of the object which activated the context menu.&lt;/li&gt;&lt;li&gt;Context Object, the object which activated the context menu.&lt;/li&gt;&lt;li&gt;Menu Object, a WebMenu object representing the activated context menu.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Following sample demonstrates how to modify “Auto Arrange Icons” text in Window object context menu.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebDesktopManager1_OnContextMenu(controlId, objectType, contextObject, menu) {
    var WebDesktopManager1 = ISGetObject(controlId);

    if (objectType == "Desktop") {
        menu.Items.GetNamedItem("mnuAutoArrange").Text = "&lt;span style="color: #00b050"&gt;[your text in here]&lt;/span&gt;";
    }

    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Hope this helps. &lt;/span&gt;&lt;/p&gt;</description></item><item><title>webdesktop contextmenu localize </title><link>http://www.intersoftsolutions.com/Community/WebGrid/webdesktop-contextmenu-localize/</link><pubDate>Sun, 28 Mar 2010 07:28:42 GMT</pubDate><dc:creator>hamdy.ghanem</dc:creator><description>&lt;p&gt;I want to localize the contextmen of webdesktop&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;auto arrange icons&lt;/p&gt;
&lt;p&gt;show esktop icons&lt;/p&gt;
&lt;p&gt;cascading&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;etc&lt;/p&gt;</description></item></channel></rss>