<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: How to Change Applet  Field Colors in Siebel</title>
	<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/</link>
	<description>Siebel Blogs, News, Events, Tips and Tricks</description>
	<pubDate>Sat, 19 May 2012 09:27:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Prabu</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-35279</link>
		<author>Prabu</author>
		<pubDate>Tue, 17 Apr 2012 06:18:30 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-35279</guid>
		<description>Hi Sridhar, Good work. Everyone learns &#38; few take pains to leave footprints behind about what they have learnt. Keep up with good work. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Sridhar, Good work. Everyone learns &amp; few take pains to leave footprints behind about what they have learnt. Keep up with good work. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tv</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-27426</link>
		<author>tv</author>
		<pubDate>Mon, 24 Oct 2011 23:59:26 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-27426</guid>
		<description>Not a bad post by any means, would just have liked a couple of more details and some of the things explained more closely.</description>
		<content:encoded><![CDATA[<p>Not a bad post by any means, would just have liked a couple of more details and some of the things explained more closely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-25762</link>
		<author>Rajesh</author>
		<pubDate>Sun, 18 Sep 2011 14:41:10 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-25762</guid>
		<description>Hi Vishnu,

It was nice post. Can you please share the info on getting the description value on mouseover the field? I have the similar requirement from my client. Your help would be highly appreciated.

Thanks,
Rajesh.</description>
		<content:encoded><![CDATA[<p>Hi Vishnu,</p>
<p>It was nice post. Can you please share the info on getting the description value on mouseover the field? I have the similar requirement from my client. Your help would be highly appreciated.</p>
<p>Thanks,<br />
Rajesh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suma</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-15653</link>
		<author>suma</author>
		<pubDate>Sat, 08 May 2010 12:41:10 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-15653</guid>
		<description>good,


can any tell me how to practise siebel eai in pc</description>
		<content:encoded><![CDATA[<p>good,</p>
<p>can any tell me how to practise siebel eai in pc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-14737</link>
		<author>Anonymous</author>
		<pubDate>Mon, 22 Feb 2010 04:46:43 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-14737</guid>
		<description>Use this but only in Browser Script

The SetProperty method sets visual properties of a control.

Syntax
controlVar.SetProperty(propName, propValue)

 Argument Description 
propName
 The name of the property to be set, as described in the following table
 
propValue
 The value to assign to the property, as described in the following table
 

Returns
Not applicable

Usage
SetProperty can be used with the following controls: CheckBox, ComboBox, TextBox, and TextArea.

If more than one property is to be set, each must be set in a separate statement.

The following table lists the properties that can be set for a control, and the values that can be assigned to them:

 Property Value Description 
BgColor
 string
 Determines background color for a label; for example, red is "#ff0000", green is "#00ff00", and blue is "#0000ff"
 
Enabled 
 TRUE or FALSE
 Is the button active? (Unless explicitly modified by using SetProperty, default is TRUE.)
 
FontColor
 string
 Determines font color for a label; for example, green is "#00ff00"
 
FontType
 string
 Determines font type for a label; for example, "Times Roman"
 
FontSize
 string
 Determines font size for a label; for example, "12 pt"
 
FontStyle
 string
 Determines font style for a label; for example, "italic"
 
Height
 string
 Determines height for a control, in pixels; for example, "5"
 
Shown
 TRUE or FALSE
 Is the control shown? (Unless explicitly modified by using SetProperty, default is as defined in the repository.)
 
ReadOnly
 TRUE or FALSE
 Determines whether the control is read-only. Defaults to repository definition unless explicitly modified by using SetProperty.
 
Visible
 TRUE or FALSE
 Determines whether the control is visible. Defaults to repository definition unless explicitly modified by using SetProperty.
 
Width
 string
 Determines width for a control, in pixels; for example, "80"
 

Used With
Browser Script

Example
The following code shows the use of SetProperty:

objCheckBox.SetProperty("FontColor", "#00ff00");
objCheckBox.SetProperty("FontStyle", "italic");
objCheckBox.SetProperty("FontType", "Verdana");
objCheckBox.SetProperty("FontSize", "14 pt");
objCheckBox.SetProperty("BgColor", "#00f000");
objCheckBox.SetProperty("Width", "100");
objCheckBox.SetProperty("Height", "100");</description>
		<content:encoded><![CDATA[<p>Use this but only in Browser Script</p>
<p>The SetProperty method sets visual properties of a control.</p>
<p>Syntax<br />
controlVar.SetProperty(propName, propValue)</p>
<p> Argument Description<br />
propName<br />
 The name of the property to be set, as described in the following table</p>
<p>propValue<br />
 The value to assign to the property, as described in the following table</p>
<p>Returns<br />
Not applicable</p>
<p>Usage<br />
SetProperty can be used with the following controls: CheckBox, ComboBox, TextBox, and TextArea.</p>
<p>If more than one property is to be set, each must be set in a separate statement.</p>
<p>The following table lists the properties that can be set for a control, and the values that can be assigned to them:</p>
<p> Property Value Description<br />
BgColor<br />
 string<br />
 Determines background color for a label; for example, red is &#8220;#ff0000&#8243;, green is &#8220;#00ff00&#8243;, and blue is &#8220;#0000ff&#8221;</p>
<p>Enabled<br />
 TRUE or FALSE<br />
 Is the button active? (Unless explicitly modified by using SetProperty, default is TRUE.)</p>
<p>FontColor<br />
 string<br />
 Determines font color for a label; for example, green is &#8220;#00ff00&#8243;</p>
<p>FontType<br />
 string<br />
 Determines font type for a label; for example, &#8220;Times Roman&#8221;</p>
<p>FontSize<br />
 string<br />
 Determines font size for a label; for example, &#8220;12 pt&#8221;</p>
<p>FontStyle<br />
 string<br />
 Determines font style for a label; for example, &#8220;italic&#8221;</p>
<p>Height<br />
 string<br />
 Determines height for a control, in pixels; for example, &#8220;5&#8243;</p>
<p>Shown<br />
 TRUE or FALSE<br />
 Is the control shown? (Unless explicitly modified by using SetProperty, default is as defined in the repository.)</p>
<p>ReadOnly<br />
 TRUE or FALSE<br />
 Determines whether the control is read-only. Defaults to repository definition unless explicitly modified by using SetProperty.</p>
<p>Visible<br />
 TRUE or FALSE<br />
 Determines whether the control is visible. Defaults to repository definition unless explicitly modified by using SetProperty.</p>
<p>Width<br />
 string<br />
 Determines width for a control, in pixels; for example, &#8220;80&#8243;</p>
<p>Used With<br />
Browser Script</p>
<p>Example<br />
The following code shows the use of SetProperty:</p>
<p>objCheckBox.SetProperty(&#8221;FontColor&#8221;, &#8220;#00ff00&#8243;);<br />
objCheckBox.SetProperty(&#8221;FontStyle&#8221;, &#8220;italic&#8221;);<br />
objCheckBox.SetProperty(&#8221;FontType&#8221;, &#8220;Verdana&#8221;);<br />
objCheckBox.SetProperty(&#8221;FontSize&#8221;, &#8220;14 pt&#8221;);<br />
objCheckBox.SetProperty(&#8221;BgColor&#8221;, &#8220;#00f000&#8243;);<br />
objCheckBox.SetProperty(&#8221;Width&#8221;, &#8220;100&#8243;);<br />
objCheckBox.SetProperty(&#8221;Height&#8221;, &#8220;100&#8243;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flekko</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-13539</link>
		<author>Flekko</author>
		<pubDate>Wed, 11 Nov 2009 09:49:25 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-13539</guid>
		<description>You could change the control's color property at runtime using a browserscript. Have a look here: http://siebelunleashed.com/find-control-method-your-gateway-to-dom/</description>
		<content:encoded><![CDATA[<p>You could change the control&#8217;s color property at runtime using a browserscript. Have a look here: <a href="http://siebelunleashed.com/find-control-method-your-gateway-to-dom/" rel="nofollow">http://siebelunleashed.com/find-control-method-your-gateway-to-dom/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sridhar</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-12329</link>
		<author>Sridhar</author>
		<pubDate>Wed, 09 Sep 2009 05:32:12 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-12329</guid>
		<description>your best bet would be to use toggle applet based on the condition. one applet will have colored label and other wont. Good Luck.</description>
		<content:encoded><![CDATA[<p>your best bet would be to use toggle applet based on the condition. one applet will have colored label and other wont. Good Luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manjumariyappa</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-12313</link>
		<author>manjumariyappa</author>
		<pubDate>Tue, 08 Sep 2009 06:24:41 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-12313</guid>
		<description>Hi, 
How to change the font color/ Background (Label or Text)with condition's like if condition is true different color(Red)or condition fails (Black)no changes.
thanks in advance 
Manju</description>
		<content:encoded><![CDATA[<p>Hi,<br />
How to change the font color/ Background (Label or Text)with condition&#8217;s like if condition is true different color(Red)or condition fails (Black)no changes.<br />
thanks in advance<br />
Manju</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sridhar</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-8442</link>
		<author>Sridhar</author>
		<pubDate>Thu, 07 May 2009 17:42:47 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-8442</guid>
		<description>IE7 is relatively new. some activex controls dont work right. you need to apply a patch to Siebel to work on IE7. check supportweb.</description>
		<content:encoded><![CDATA[<p>IE7 is relatively new. some activex controls dont work right. you need to apply a patch to Siebel to work on IE7. check supportweb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ANDRES MONTALVO</title>
		<link>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-8437</link>
		<author>ANDRES MONTALVO</author>
		<pubDate>Thu, 07 May 2009 14:07:26 +0000</pubDate>
		<guid>http://siebelguide.com/siebelblogs/2009/04/24/how-to-change-applet-field-colors-in-siebel/#comment-8437</guid>
		<description>Hi, 

I use Siebel 7.5, but since new internet explorer 7 was installed,  Siebel refresh many times and start again when working, if have this experience, could you please let me know how fix this problem?

Thanks and best regards,
Andres</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I use Siebel 7.5, but since new internet explorer 7 was installed,  Siebel refresh many times and start again when working, if have this experience, could you please let me know how fix this problem?</p>
<p>Thanks and best regards,<br />
Andres</p>
]]></content:encoded>
	</item>
</channel>
</rss>

