I have a resizing issue with the
RadSearchBox. The control has a width of
100%.
When increasing the width of the
browser, the RadSearchBox width auto adjust and increase accordingly.
However, when I decrease the browser
width, the RadSearchBox width is not decreased.
I would expect the control width to decrease like other Telerik controls.
Can you help me with that please ?
<style type="text/css"> .DivStyle { width:90%; border:1px solid green; padding:10px; } .TableStyle { width:100% } .TableStyle td { width:50%; border:1px solid red; padding:10px }</style><div class="DivStyle"> <table class="TableStyle"> <tr> <td><telerik:RadSearchBox ID="RadSearchBox1" runat="server" Width="100%" /></td> <td>Hello world</td> </tr> </table> </div>