I'd like to set the style of the null text that is displayed when the drop down is NULL (has no selected value). I know I can set the text for null, but what do I need to override to set the style? For instance, I'd like to set it Italic, and possibly dim the text itself - but only when the null value is displayed.
I assume I can simply override a CSS style (in a theme) but I have looked and looked and can't figure out which style I need to override. Any help appreciated.
-Tom
Dear Tom,
Thank you for contacting Infragistics!
We have received your support request concerning the WDD's null text styling, and this case has been assigned to me. Infragistics is dedicated to helping you solve this issue. Our team and I have done an initial review of your case and you we offer the ".igdd_NullText" style for this situation. This style is applied to the WebDropDown when displaying the Null text and removed when not displaying.
Please let me know if you have any further questions or concerns with this and I'll be glad to help you.
Michael,
Well I tried using .igdd_NullText as shown below, but it did nothing - the null text didn't change at all on any of my WebDropDowns. I have found that using the .igte_IGNullText does work for WebDropDownCalendar control null text, but I want to style the general Infragistics drop down null text .
Any other suggestions? (Note: I included this right on my ASP.NET page so it should have overridden it properly, I would believe.)
.igdd_NullText { background-color: transparent; color: #666666; font-weight: normal; font-size: 8pt; font-style: italic; font-family: Verdana,Arial,Helvetica,sans-serif; border-width:0px; width: 100%; z-index: 0; }