Hi,
I'm having an issue with RadDropDownTable when placed in a table.. When I select/check multiple leaves in the control, the container of the control expands/shortens based on the selection .. Any idea on how to resolve this?
Here is the code im using.
I'm having an issue with RadDropDownTable when placed in a table.. When I select/check multiple leaves in the control, the container of the control expands/shortens based on the selection .. Any idea on how to resolve this?
Here is the code im using.
<
div
>
<
table
style
=
"background: lightblue;"
>
<
tr
>
<
td
>
<
span
class
=
"Label"
><
b
>Module: </
b
></
span
>
<
telerik:RadDropDownTree
runat
=
"server"
ID
=
"ModuleDropDownTree"
CheckBoxes
=
"SingleCheck"
Width
=
"150px"
EnableViewState
=
"False"
DataFieldID
=
"ModuleID"
DataFieldParentID
=
"parentModuleID"
DataSourceID
=
"SqlDataSource1"
DataTextField
=
"Name"
DataValueField
=
"ModuleID"
>
</
telerik:RadDropDownTree
>
</
td
>
<
td
>
<
span
class
=
"Label"
><
b
>Modes: </
b
></
span
>
<
asp:RadioButton
ID
=
"AutoCheckBox"
Text
=
"Automated"
runat
=
"server"
AutoPostBack
=
"false"
/>
<
asp:RadioButton
ID
=
"ManualCheckBox"
Text
=
"Manual"
runat
=
"server"
AutoPostBack
=
"false"
/>
<
asp:RadioButton
ID
=
"AMCheckBox"
Text
=
"Both"
runat
=
"server"
AutoPostBack
=
"false"
/>
</
td
>
<
td
>
<
asp:LinkButton
runat
=
"server"
Text
=
"Clear"
ForeColor
=
"White"
/>
</
td
>
</
tr
>
</
table
>
</
div
>