﻿<?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 - WebDesktop - set NotifyWindowURL from client side</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/set-NotifyWindowURL-from-client-side/</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>set NotifyWindowURL from client side</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/set-NotifyWindowURL-from-client-side/</link><pubDate>Wed, 07 Nov 2012 20:43:23 GMT</pubDate><dc:creator>bernard</dc:creator><category>NotifyWindowURL</category><description>Hi Bjay,&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Glad that you have solved your problem. If you have any further question, please don't hesitate to ask us.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Regards,&lt;/div&gt;
&lt;div&gt;Bernard&lt;/div&gt;</description></item><item><title>set NotifyWindowURL from client side</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/set-NotifyWindowURL-from-client-side/</link><pubDate>Wed, 07 Nov 2012 08:29:46 GMT</pubDate><dc:creator>BJay</dc:creator><category>NotifyWindowURL</category><description>Bernard,&lt;br /&gt;&lt;br /&gt;Thank you so much. It works.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;BJay&lt;br /&gt;&lt;br /&gt;</description></item><item><title>set NotifyWindowURL from client side</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/set-NotifyWindowURL-from-client-side/</link><pubDate>Tue, 06 Nov 2012 23:51:55 GMT</pubDate><dc:creator>bernard</dc:creator><category>NotifyWindowURL</category><description>&lt;p&gt;Hi BJay,&lt;/p&gt;&lt;p&gt;I've analyzed your problem. If you want to open new window when you click WebNotification to your desired page you can used this code:&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;function Button1_onclick() {
    var WebNotify = ISGetObject("WebNotification1");
    var myNotification = WebNotify;
    myNotification.ContentText = "This notification is sent from button click. Check it out!";
    myNotification.CaptionText = "NotifyWindowURL does not work";
    myNotification.NotifyWindowClickable = true;
    myNotification.NotifyWindowURL = "http://www.intersoftpt.com/";
    myNotification.NotifyURL = "http://www.intersoftpt.com/";
    WebNotify.Notify(myNotification);
}&lt;/pre&gt;
&lt;p&gt;You can put NotifyURL attribute inside your WebNotification in client-side. It works fine here if I used this code. You can try to implement this code in your local end. And please tell me if this matter still happen on your local end. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Bernard&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>set NotifyWindowURL from client side</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/set-NotifyWindowURL-from-client-side/</link><pubDate>Tue, 06 Nov 2012 11:16:27 GMT</pubDate><dc:creator>BJay</dc:creator><category>NotifyWindowURL</category><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;I need to set NotifyWindowURL property of a WebNotification object that activates from client side using java script?&lt;br /&gt;&lt;br /&gt;I have added one line myNotification.NotifyWindowURL = "http://www.intersoftpt.com/" to Button1_onclick() function posted at&lt;br /&gt;http://www.intersoftpt.com/Community/WebDesktop/webnotification-event-based/&lt;br /&gt; &lt;/p&gt;&lt;pre&gt;function Button1_onclick() {
     var WebNotify = ISGetObject("WebNotification1");
     var myNotification = WebNotify;
     myNotification.ContentText = "This notification is sent from button click. Check it out!";
     myNotification.CaptionText = "NotifyWindowURL does not work";
     myNotification.NotifyWindowURL = "http://www.intersoftpt.com/"
     WebNotify.Notify(myNotification);
}
&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;WebNotify.Notify(myNotification) launches a notification, but makes myNotification.NotifyWindowURL undefined. So click on the notification opens a page like http://MyWebPage/undefined. &lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;BJay&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>