Hey! I am using Telerik Ajax controls in some app, but i have this problem where i use a RadDecorator and all my input controls are getting
"visibility: hidden !important" and wont work properly obviously. I tried removing this RadDecorator and the "visibility: hidden !important" attribute disappear and all the controls work fine but the RadComboBox. I am also using the Metro Skin.
this is how i am using the RadDecorator:
one of the most important controls i am using is the RadComboBox, this is one of the controls that stop working, like if it was disabled, and it is written like this:
Is this a known issue? am i doing something wrong?
Thanks in advance.
"visibility: hidden !important" and wont work properly obviously. I tried removing this RadDecorator and the "visibility: hidden !important" attribute disappear and all the controls work fine but the RadComboBox. I am also using the Metro Skin.
this is how i am using the RadDecorator:
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="CheckBoxes, RadioButtons" />one of the most important controls i am using is the RadComboBox, this is one of the controls that stop working, like if it was disabled, and it is written like this:
<telerik:RadComboBox ID="RadComboBoxBranchOffice" runat="server" DataSourceID="ObjectDataSourceBranchOffice" DataTextField="BranchOfficeName" DataValueField="BranchOfficeId" AppendDataBoundItems="true" MaxHeight="350"> <Items> <telerik:RadComboBoxItem Text="--Seleccionar--" Value="0" /> </Items></telerik:RadComboBox><asp:ObjectDataSource ID="ObjectDataSourceBranchOffice" runat="server" SelectMethod="GetAllByOfficeId" TypeName="Location.BranchOfficeBll"> <SelectParameters> <asp:ControlParameter ControlID="RadComboBoxOffice" Name="OfficeId" PropertyName="SelectedValue" Type="Int32" /> </SelectParameters></asp:ObjectDataSource>Is this a known issue? am i doing something wrong?
Thanks in advance.