|
1. How to add Flyout component to your project?
· Right-click to Bin folder in Solution Explorer
· Select "Add Reference..."
· Go to Browse tabs
· Select obout_Flyout2_NET.dll in decompressed folder of Flyout.
· Click OK
3. How to make Flyout with fixed Width and varied Height?
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>
3. Can I attach a flyout to many elements?
Yes, you can. By specifying all element IDs into AttachTo property
flyout1.AttachTo = "element1_ID, element2_ID, element3_ID";
4. Can I control Flyout at client-side?
Yes, you can. Flyout provides a set of client-side functions to handle Flyout without posting back.
For more information, please read Client-side functions
5. Can I attach Flyout to Image map?
Yes, you can. All you need to to do are:
- Assign id to image which use the map. For example, <IMG id = "myImage" />
- Assgin id to AREA tag in image map. For example, <AREA id = "myRegion" />
- Specify in Flyout: AttachTo = "myImage[myRegion]"
The Flyout will attach to area "myRegion" inside image "myImage".
|