This is the code i am presently using.
<asp:Panel ID="pnlAlways" runat="server" GroupingText="<font class='avsePanelGroupText'><b>Editing Options</b></font>">
<table>
<tr>
<td align="left" style="width:100px">
<asp:Button ID="btnMerge" Text="Merge Routes" runat="server" onclick="btnMerge_Click" Width="150px" />
</td>
</tr>
<tr>
<td align="left" style="width:100px">
<%--<input id="btnEdit" onclick="EditOrder();" type="button" value="Edit Order"
name="btnEdit" />--%>
<asp:Button ID="btnEdit" runat="server" Text="Edit Order"
onclick="btnEdit_Click" Width="150px" />
</td>
</tr>
<tr>
<td align="left" style="width:100px">
<asp:Button ID="btnChange" runat="server" Text="Change Route" onclick="btnChange_Click" Width="150px"/>
</td>
</tr>
<tr>
<td align="left" style="width:100px">
<asp:Button ID="btnNewRoute" runat="server" Text="New Route" Width="150px" onclick="btnNewRoute_Click" />
</td>
</tr>
<tr>
<td style="width:150px" align="center">
<asp:Label ID="lblMerge" runat="server" Text="" ForeColor="White"></asp:Label>
</td>
</tr>
</table>
</asp:Panel>
<ajaxToolkit:AlwaysVisibleControlExtender ID="avceRouteEditing" runat="server" TargetControlID="pnlAlways" VerticalSide="Bottom"
VerticalOffset="10" HorizontalSide="Left" HorizontalOffset="115" ScrollEffectDuration=".1"
UseAnimation="true">
</ajaxToolkit:AlwaysVisibleControlExtender>.
I have seen your site.the controls looks good.
My requirement is like i have got master page.i have placed menu control over there.I need the Always control to be placed just below this menu control.But i cannot use Alwaysvisible control in Master page as it has got buttons and respected events are written in another page.
i got a situation where only couple of pages need this control and more over the positioning should be as good as menu control which positions well during window resize.
If the above explanation is hard to understand to be clear i want to have a custom offset to AlwaysVisible control.I have seen it setting well for the page left,right and center but i really want to know if we can position regardless of window resize.