I have three Buttons within the same Group (GroupName) as type "StandardButton" with ToogleType="Radio"
Each of them gets enclosed with a Div element that have style="display:block;" so the buttons are listed unter each other.
This is the Code:
and this this the rendered result:
Maybe I'm to stupid, but how can I disable this.
BTW, I'm using 2011 Q3 Release of the Telerik Controls
Each of them gets enclosed with a Div element that have style="display:block;" so the buttons are listed unter each other.
This is the Code:
<telerik:RadButton ID="btnAbsolut" runat="server" Checked="true" ButtonType="StandardButton" ToggleType="Radio" GroupName="turnoverChartValue" Text="Absolute Werte" Skin="Rausch" ToolTip="Anzeige als Absolute Werte" EnableEmbeddedSkins="False" EnableEmbeddedBaseStylesheet="False" Width="60" OnCheckedChanged="TurnoverChartButton_CheckedChanged"></telerik:RadButton><telerik:RadButton ID="btnAbweichung" runat="server" ButtonType="StandardButton" ToggleType="Radio" GroupName="turnoverChartValue" Text="Abweichung" Skin="Rausch" ToolTip="Anzeige als Abweichung" EnableEmbeddedSkins="False" EnableEmbeddedBaseStylesheet="False" Width="60" OnCheckedChanged="TurnoverChartButton_CheckedChanged"></telerik:RadButton><telerik:RadButton ID="btnProzent" runat="server" ButtonType="StandardButton" ToggleType="Radio" GroupName="turnoverChartValue" Text="Abweichung in %" Skin="Rausch" ToolTip="Anzeige als Abweichung in Prozent" EnableEmbeddedSkins="False" EnableEmbeddedBaseStylesheet="False" Width="60" OnCheckedChanged="TurnoverChartButton_CheckedChanged"></telerik:RadButton>and this this the rendered result:
<div style="display: block;" id="btnAbsolutPanel"> <a style="width: 60px; display: inline-block;" id="btnAbsolut" class="RadButton RadButton_Rausch rbSkinnedButton rbSkinnedButtonChecked" title="Anzeige als Absolute Werte" href="javascript:void(0)"><input style="width: 100%; padding-right: 0px; padding-left: 4px;" id="btnAbsolut_input" class="rbDecorated" tabIndex="-1" name="btnAbsolut" value="Absolute Werte" type="submit"><input id="btnAbsolut_ClientState" name="btnAbsolut_ClientState" type="hidden" autocomplete="off"></a></div><div style="display: block;" id="btnAbweichungPanel"> <a style="width: 60px; display: inline-block;" id="btnAbweichung" class="RadButton RadButton_Rausch rbSkinnedButton" title="Anzeige als Abweichung" href="javascript:void(0)"><input style="width: 100%; padding-right: 0px; padding-left: 4px;" id="btnAbweichung_input" class="rbDecorated" tabIndex="-1" name="btnAbweichung" value="Abweichung" type="submit"><input id="btnAbweichung_ClientState" name="btnAbweichung_ClientState" type="hidden" autocomplete="off"></a></div><div style="display: block;" id="btnProzentPanel"> <a style="width: 60px; display: inline-block;" id="btnProzent" class="RadButton RadButton_Rausch rbSkinnedButton" title="Anzeige als Abweichung in Prozent" href="javascript:void(0)"><input style="width: 100%; padding-right: 0px; padding-left: 4px;" id="btnProzent_input" class="rbDecorated" tabIndex="-1" name="btnProzent" value="Abweichung in %" type="submit"><input id="btnProzent_ClientState" name="btnProzent_ClientState" type="hidden" autocomplete="off"></a></div>Maybe I'm to stupid, but how can I disable this.
BTW, I'm using 2011 Q3 Release of the Telerik Controls