Make Flyout with fixed Width and varied Height
Q:
How to make Flyout with fixed Width and varied Height?
A:
By default AutoResize has true value, Flyout will wrap arround the content. So what we need to do is to make internal content fixed Width and varied Height.
<obout:Flyout runat="server" id="flyout1" AttachTo="someElement"> <div class="width:100px;height:auto;"> Hello </div> </obout:Flyout>
|