﻿<?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 - WebScheduler - Change editform title bar</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Change-editform-title-bar/</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>Change editform title bar</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Change-editform-title-bar/</link><pubDate>Wed, 17 Mar 2010 02:46:08 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;It is possible. You will need to handle the validation at OnEditingFormShow client side event. Please see the snippet code below.&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;function WebScheduler1_OnEditingFormShow(controlId, action, eventView, eventType, newType)
{
        var WebScheduler1 = ISGetObject(controlId);
	if (action == "New") 
        {
	    window.setTimeout(function() {
		            ISGetObject("dlgEditing").Window.SetCaption("New X");
		        }, 10);
	} else 
        {
	    window.setTimeout(function() {
		            ISGetObject("dlgEditing").Window.SetCaption("Edit X");
		        }, 10);
	}
        return true;
}&lt;/pre&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy &lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Change editform title bar</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Change-editform-title-bar/</link><pubDate>Tue, 16 Mar 2010 14:46:32 GMT</pubDate><dc:creator>fgary6861</dc:creator><description>&lt;p&gt;Is it possible to change the editform top title bar in add mode from "New Event" to "New X", also how to change the edit mode top title bar from "Edit Event" to "Edit X"?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item></channel></rss>