Couldnt able to style with the style sheets provided
Thanks
Hello muqtadarkhan1,
Can you describe in more detail your issue?
Please refer to the below forum threads refering the styling:
http://community.infragistics.com/forums/p/24075/88226.aspx#88226
http://community.infragistics.com/forums/p/37286/216613.aspx
Let me know if you have further questions.
Hi,
Thanks for the quick response.
Well i have tried the solution mentioned in the forum.
But it does not work for me. I am using IE 7.
The issue i have is with styling the background of the dropdown textbox and the arrow button.
Also with the autopostback, when after selecting one value and do a postback. Then try deleting one
character from the previously selected value causes a autopostback to occur.
Thanks.
Hello muqtadarkhan1 ,
Thank you for the update.
Regarding dropdown textbox you should modify igdd_ValueDisplay style:
.igdd_ValueDisplay
{
background-color: Fuchsia;
}
Regarding button image you should set ImageUrl, HoverImageUrl and PressedImageUrl properties:
<Button ImageUrl="ig_res/Default/images/add_down.gif"
HoverImageUrl="ig_res/Default/images/add_down.gif"
PressedImageUrl="ig_res/Default/images/add_down.gif" />
Autopostback flags should be furned off on Selection Changed:
<AutoPostBackFlags SelectionChanged="Off" />
You can also set AutoSelectOnMatch="false", EnableAutoCompleteFirstMatch="false"
Hope this helps