I have added this toolbar to a radgrid where I have all the action with the data below in radgrid at top as toolbar. This toolbar even though I clearly state that
Orientation="Horizontal"
It doesnt show as HOrizontal it is till vertical. And I have tried different skins (vista as mentioned in demos)
Can somebody help here... Here is the code
<telerik:RadGrid ID="RadGrid1" AllowAutomaticUpdates="True" AllowAutomaticDeletes="True"
Skin="Office2007" Width="97%" AllowSorting="True" AllowPaging="True" GridLines="None"
runat="server" ShowFooter="True" AllowMultiRowSelection="True" PageSize="7" AllowMultiRowEdit="True">
<PagerStyle Mode="NextPrevAndNumeric" />
<MasterTableView Width="100%" GridLines="None" CommandItemDisplay="Top" EditMode="InPlace"
HorizontalAlign="NotSet" DataKeyNames="Id">
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<EditFormSettings>
<PopUpSettings ScrollBars="None" />
</EditFormSettings>
<CommandItemTemplate>
<telerik:RadToolBar ID="RadToolBar1" Orientation="Horizontal" Skin="Vista" runat="server"
Width="100%" OnButtonClick="RadToolBar1_ButtonClick">
<Items>
<telerik:RadToolBarButton Text="Update" CommandName="UpdateEdited" ImageUrl="~/ToolBar/Examples/ApplicationScenarios/GridCommandItem/Images/Update.gif"
Visible='<%# RadGrid1.EditIndexes.Count > 0 %>'>
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Content Verified">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Assign Sales Person">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Send Message">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Refresh" CommandName="RebindGrid" ImageUrl="~/ToolBar/Examples/ApplicationScenarios/GridCommandItem/Images/Refresh.gif">
</telerik:RadToolBarButton>
</Items>
</telerik:RadToolBar>
</CommandItemTemplate>
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="True" EnableDragToSelectRows="True" />
</ClientSettings>
</telerik:RadGrid>
Orientation="Horizontal"
It doesnt show as HOrizontal it is till vertical. And I have tried different skins (vista as mentioned in demos)
Can somebody help here... Here is the code
<telerik:RadGrid ID="RadGrid1" AllowAutomaticUpdates="True" AllowAutomaticDeletes="True"
Skin="Office2007" Width="97%" AllowSorting="True" AllowPaging="True" GridLines="None"
runat="server" ShowFooter="True" AllowMultiRowSelection="True" PageSize="7" AllowMultiRowEdit="True">
<PagerStyle Mode="NextPrevAndNumeric" />
<MasterTableView Width="100%" GridLines="None" CommandItemDisplay="Top" EditMode="InPlace"
HorizontalAlign="NotSet" DataKeyNames="Id">
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<EditFormSettings>
<PopUpSettings ScrollBars="None" />
</EditFormSettings>
<CommandItemTemplate>
<telerik:RadToolBar ID="RadToolBar1" Orientation="Horizontal" Skin="Vista" runat="server"
Width="100%" OnButtonClick="RadToolBar1_ButtonClick">
<Items>
<telerik:RadToolBarButton Text="Update" CommandName="UpdateEdited" ImageUrl="~/ToolBar/Examples/ApplicationScenarios/GridCommandItem/Images/Update.gif"
Visible='<%# RadGrid1.EditIndexes.Count > 0 %>'>
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Content Verified">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Assign Sales Person">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Send Message">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton Text="Refresh" CommandName="RebindGrid" ImageUrl="~/ToolBar/Examples/ApplicationScenarios/GridCommandItem/Images/Refresh.gif">
</telerik:RadToolBarButton>
</Items>
</telerik:RadToolBar>
</CommandItemTemplate>
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="True" EnableDragToSelectRows="True" />
</ClientSettings>
</telerik:RadGrid>