Displaying DevExpress buttons inline

Chaospratan

New Member
I've consulted this page, but my ASPxButton controls are still displaying on top of one another. Am I missing something in this code? I can tell that the style is detected, because I'm able to auto-complete the style when typing in my CssClass argument.aspx page:\[code\]<dxe:ASPxButton ID="_ASPxButton1" ClientInstanceName="_ASPxButton1" runat="server" Text="Print" AutoPostBack="False" CssClass="btnInline" > <ClientSideEvents Click="function(s, e) { window.print(); }" /></dxe:ASPxButton><dxe:ASPxButton ID="_ASPxButton2" ClientInstanceName="_ASPxButton2" runat="server" Text="Close" AutoPostBack="False" CssClass="btnInline" > <ClientSideEvents Click="function(s, e) { window.close(); }" /></dxe:ASPxButton>\[/code\]css:\[code\].btnInline { display: inline-table;}\[/code\]
 
Back
Top