Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
DropDownProvider width / styling issue
posted

I am using a DropDown editor provider in a WebDataGrid. I have issues styling it. The drop down is much longer then the column it is assigned to and setting the width property to the Editor Control neither directly nor through css style has any effect. Same thing goes for height and font. I can set the DropDownContainerHeight and DropDownContainerWidth with no issues though.

Any ideas?

<EditorProviders>                       
 <ig:DropDownProvider ID="AccountTypeDropDownProvider"  >
 <EditorControl ID="EditorControl1" runat="server" CssClass = "DropDownProvider" DisplayMode="DropDownList" Width="100px" Height="12px" EnableClientRendering="true" DropDownContainerHeight = "100px" DropDownContainerWidth = "100px"  />
   </ig:DropDownProvider>
</EditorProviders>	

my class:

.DropDownProvider 
{	line-height:12px;
	height:12px;
	width:100px;
	font-familyarial, verdana;font-size10px;
	color#333333;
	background-color#fffccc;
	padding:4px 2px 2px 2px;
}

Thank you.