I have this code which includes the runat="server" so I don't have to wrap a RadCode Block.
One of the buttons gets a ToolTip attached programmatically. When it renders in the browser it renders as:
The "style=display:block" is causing it to render below my other button and it should render side by side.
<table cellpadding="3" cellspacing="1" style="width: 100%"> |
<tr> |
<td align="right" runat="server"> |
<asp:Button id="ContinueButton" OnClick="ContinueShopping" runat="server" Text='<%#RM.GetString("BASKET_CONTINUE_SHOPPING")%>' /> |
<asp:Button id="CheckoutButton" OnClick="Checkout" runat="server" Text='<%#RM.GetString("BASKET_PROCEED_CHECKOUT")%>' /> |
</td> |
</tr> |
</table> |
One of the buttons gets a ToolTip attached programmatically. When it renders in the browser it renders as:
<td align="right"> |
<input id="ctl00_MainContent_ShoppingCart1_ThemeShoppingCart1_ContinueButton" type="submit" value="Continue Shopping" name="ctl00$MainContent$ShoppingCart1$ThemeShoppingCart1$ContinueButton"/> |
<div id="ctl00_MainContent_ShoppingCart1_ThemeShoppingCart1_ctl00_MainContent_ShoppingCart1_ThemeShoppingCart1_CheckoutButtonPanel" style="display: block;"> |
<input id="ctl00_MainContent_ShoppingCart1_ThemeShoppingCart1_CheckoutButton" type="submit" value="Proceed to Checkout" name="ctl00$MainContent$ShoppingCart1$ThemeShoppingCart1$CheckoutButton"/> |
</div> |
</td> |