hi all
on the top of my grid view is a combo box , and it is changing the style of my grid. i don't know how did it come in my grid?
how can i remove it?
in this image u can see it : Img => the combo box with "Default" text....
when i press the combo box i see all of the telerik style name. how can i remove it?
this is my code :
on the top of my grid view is a combo box , and it is changing the style of my grid. i don't know how did it come in my grid?
how can i remove it?
in this image u can see it : Img => the combo box with "Default" text....
when i press the combo box i see all of the telerik style name. how can i remove it?
this is my code :
<telerik:RadGrid OnItemCreated="RadGrid1_ItemCreated" ID="RadGrid1" runat="server" AllowPaging="True" Width="800px" DataSourceID="SqlDataSource1" AutoGenerateColumns="False" CellSpacing="0" GridLines="None" Skin="Metro"> <ClientSettings> <Selecting AllowRowSelect="true"></Selecting> <ClientEvents OnRowDblClick="RowDblClick"></ClientEvents> </ClientSettings> <MasterTableView ClientDataKeyNames="sid" CommandItemDisplay="Top" DataKeyNames="sid" PageSize="12" Width="100%"> <CommandItemSettings ExportToPdfText="Export to PDF" /> <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column" Visible="True"> </RowIndicatorColumn> <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column" Visible="True"> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="sid" HeaderText="sid" ReadOnly="True" SortExpression="sid" UniqueName="sid" Visible="False"> <HeaderStyle Font-Bold="True" Font-Names="Tahoma" ForeColor="#08AFEE" /> <ItemStyle Font-Bold="False" Font-Names="Tahoma" Font-Size="10pt" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Descr" HeaderText="نمایش" SortExpression="Descr" UniqueName="Descr"> <HeaderStyle Font-Bold="True" Font-Names="Tahoma" ForeColor="#08AFEE" /> <ItemStyle Font-Bold="False" Font-Names="Tahoma" Font-Size="10pt" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Descr1" HeaderText="کارگردان" SortExpression="Descr1" UniqueName="Descr1"> <HeaderStyle Font-Bold="True" Font-Names="Tahoma" ForeColor="#08AFEE" /> <ItemStyle Font-Bold="False" Font-Names="Tahoma" Font-Size="10pt" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="duration" HeaderText="مدت اجرا" SortExpression="duration" UniqueName="duration"> <HeaderStyle Font-Bold="True" Font-Names="Tahoma" ForeColor="#08AFEE" /> <ItemStyle Font-Bold="False" Font-Names="Tahoma" Font-Size="10pt" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="saloonName" HeaderText="سالن" SortExpression="saloonName" UniqueName="saloonName"> <HeaderStyle Font-Bold="True" Font-Names="Tahoma" ForeColor="#08AFEE" /> <ItemStyle Font-Bold="False" Font-Names="Tahoma" Font-Size="10pt" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn UniqueName="TemplateEditColumn"> <ItemTemplate> <asp:HyperLink ID="EditLink" runat="server" Text=" " CssClass="buy" Height="35px" Width="34px" ></asp:HyperLink> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> <EditFormSettings> </EditFormSettings> <CommandItemTemplate> <a href="#" onclick="return ShowInsertForm();"></a> </CommandItemTemplate> </MasterTableView> <PagerStyle Mode="NumericPages" /> <FilterMenu EnableImageSprites="False"> </FilterMenu> </telerik:RadGrid>