<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "ice:selectInputDate style issue"]]></title>
		<link>http://www.icefaces.org/JForum/posts/list/15.page</link>
		<description><![CDATA[Latest messages posted in the topic "ice:selectInputDate style issue"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>ice:selectInputDate style issue</title>
				<description><![CDATA[ IE6 - ICEfaces 1.7dr2 - support #6776

I have some styles defined for a selectInputDate, which includes something like the following:

.BaseClassNameForSelectInputDateInput
{
    font-style: italic;
    color: blue;
}
.BaseClassNameForSelectInputDateInput-dis
{
    font-style: italic;
    color: red;
}

When the selectInputDate is enabled, the font in the text field is italic and blue.  Yet when it is disabled the font is italic and gray, not red.  

Is there another style that I should be setting to alter that gray colour? 

Thanks.
Rod.]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31129</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31129</link>
				<pubDate><![CDATA[Thu, 21 Feb 2008 11:11:47]]> GMT</pubDate>
				<author><![CDATA[ rdunne]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ Did you overwrite all corresponding style classes? icefaces handles customized style class by appending the new class name at the end of default ones which are generated from the base style classname you passed in. e.g. select input date has the default style class name "iceSelInpDate" icefaces generates the child elements' style classes from this name, like "iceSelInpDateMonthYear" and "iceSelInpDateMonthYear-dis". When overwriting the default style by: <ice:selectInputDate styleClass="custom" .../>, icefaces will generate all child style class names from "custom" and take a look at the markup, you will find "iceSelInpDateMonthYear" becomes "iceSelInpDateMonthYear customSelInpDateMonthYear"

Therefore, you may want to include child element style class if you want to overwrite specific element. You can provide me more information like which part of text you want to change so that I can better help you.

]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31244</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31244</link>
				<pubDate><![CDATA[Tue, 26 Feb 2008 13:52:30]]> GMT</pubDate>
				<author><![CDATA[ sam.xiao]]></author>
			</item>
			<item>
				<title>ice:selectInputDate style issue</title>
				<description><![CDATA[ Thanks Sam.

I have overridden all the child styles classes mentioned in the documentation.  I am trying to change the font color in the input text field for the selectInputDate.

As I said, I can change this color when the disabled attribute is false, but not when it is true.  The "Input" child style class seems to be the one that alters the input text field.

Is this a bug?  If the style for the disabled text input field remains "iceSelInpDateInput-dis BaseClassNameForSelectInputDateInput-dis", is there something in the ICE style that stops me from specifying a new color?]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31273</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31273</link>
				<pubDate><![CDATA[Wed, 27 Feb 2008 11:45:22]]> GMT</pubDate>
				<author><![CDATA[ rdunne]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ It seems to work fine for me. When disable button is clicked, anything inside input box appeared disabled and in red color.

on the page:
<span class="genmed"><b>Code:</b></span><br>
		<div style="overflow: auto; width: 100%;">
		<pre>
&lt;link href="./xmlhttp/css/xp/xp.css" rel="stylesheet" type="text/css" /&gt;
&lt;link href="./custom.css" rel="stylesheet" type="text/css" /&gt;
......
&lt;ice:selectInputDate disabled="#{bean.disabledCalendar}" renderAsPopup="true"
styleClass="custom"/&gt;
&lt;ice:commandButton value="Disable Calendar" actionListener="#{bean.disableCalendar}" partialSubmit="true"/&gt;
</pre>
		</div>		

custom.css:
<span class="genmed"><b>Code:</b></span><br>
		<div style="overflow: auto; width: 100%;">
		<pre>
.customInput-dis{
   color:red;
}
</pre>
		</div>

]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31275</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31275</link>
				<pubDate><![CDATA[Wed, 27 Feb 2008 12:53:50]]> GMT</pubDate>
				<author><![CDATA[ sam.xiao]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ Thanks Sam,

Did you try IE6?  I tried your simple example and it does not work for me under IE6, but it does turn red on FireFox.

Rod.]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31434</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31434</link>
				<pubDate><![CDATA[Mon, 3 Mar 2008 10:51:52]]> GMT</pubDate>
				<author><![CDATA[ rdunne]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ You are right. This doesn't work for IE due to the fact that you are not allowed to change "disabled" style for IE although I can see the correct style class has been applied. If you really really need this function, you can probably try to set the "disabled" back to false and use "readonly" and some custom styles.]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31453</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31453</link>
				<pubDate><![CDATA[Mon, 3 Mar 2008 15:48:22]]> GMT</pubDate>
				<author><![CDATA[ sam.xiao]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ OK.  It just seemed strange that I can make it italic, but not red, when it is disabled.

I shall rethink it.

Thanks.]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#31458</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#31458</link>
				<pubDate><![CDATA[Mon, 3 Mar 2008 16:43:27]]> GMT</pubDate>
				<author><![CDATA[ rdunne]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ Guys Can i know how to reduce the size of the textbox length

i have given the following in my custom css but it is not working

.iceSelInpDateInputDemo {
    width: 50px;
}

i have include the same in my xhtml also

But it doesnt Work]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#33273</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#33273</link>
				<pubDate><![CDATA[Mon, 14 Apr 2008 02:23:23]]> GMT</pubDate>
				<author><![CDATA[ pattamuthu]]></author>
			</item>
			<item>
				<title>ice:selectInputDate style issue</title>
				<description><![CDATA[ hey d same is not working for me lso in IE7

i added in css as:

 .textSize
 {
 	font-size: 8pt; 
 	color: #484848;
 }


and using the same in .xhtml file : <ice:selectInputDate

but the date doesn't converted in the specifd text size.

But i checked it Mozila and it is working fine there its strange.....

Plz help!!!!!!!!]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#52265</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#52265</link>
				<pubDate><![CDATA[Wed, 10 Jun 2009 02:13:25]]> GMT</pubDate>
				<author><![CDATA[ jaknap3]]></author>
			</item>
			<item>
				<title>ice:selectInputDate style issue</title>
				<description><![CDATA[ Use Internet Explorer Developer Toolbar to inspect the item and see it fail]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#52269</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#52269</link>
				<pubDate><![CDATA[Wed, 10 Jun 2009 02:37:00]]> GMT</pubDate>
				<author><![CDATA[ davidfg]]></author>
			</item>
			<item>
				<title>Re:ice:selectInputDate style issue</title>
				<description><![CDATA[ .iceSelInpDateInput{
	width: 85px;
}]]></description>
				<guid isPermaLink="true">http://www.icefaces.org/JForum/posts/list/7316.page#66886</guid>
				<link>http://www.icefaces.org/JForum/posts/list/7316.page#66886</link>
				<pubDate><![CDATA[Fri, 14 Jan 2011 16:24:46]]> GMT</pubDate>
				<author><![CDATA[ scarsix06d]]></author>
			</item>
	</channel>
</rss>
