Good Morning,
I am new to the forum and I apologize for my English. I'm Italian.
I have developed a grid with 6 levels. I have this problem.
I want that the next detailTable, is expanded only if he are the row. if it is empty should not be possible to expand.
I do not want this only on the first detailtable, but to the all.
How is possilble?
I've check the function "HideExpandColumnRecursive" but not work for me!
Any idea?
Thanks for your support.

Hello,
Does Telerik have any tools that allow you to display a powerpoint on a web page?
Using asp.net
private void LoadFilters() { ControladorInternacao controladorInternacao = new ControladorInternacao(); List<InternacaoSetorDTO> listaSetores = controladorInternacao.ListarTodosSetores(AmbienteConexao.Usuario().Cnes); List<RadComboBoxItem> listaTodosSetores = new List<RadComboBoxItem>(); foreach (InternacaoSetorDTO item in listaSetores) { listaTodosSetores.Add(new RadComboBoxItem(item.NomeSetor, item.CodInternacaoSetor.ToString())); } rcbFiltroSetor.DataSource = listaTodosSetores; rcbFiltroSetor.DataValueField = "Value"; rcbFiltroSetor.DataTextField = "Text"; rcbFiltroSetor.DataBind(); }

Hi
I have a RadGrid with skin ="windows 7" and works find and the alternating row color works like a charm.
Problem arisies when i have one of the column as sorted uisng GridSortExpression
Column which is used in GridSortExpression is not applied altrenatinmg row color - any advise would be appreciated and attached is the screen shot
and below is the code
<telerik:RadGrid ID="rgRoleMappingL1" runat="server" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting ="True" AutoGenerateColumns="False"
CellSpacing="0" GridLines="None"
OnNeedDataSource="rgRoleMappingL1_NeedDataSource"
OnPageSizeChanged="rgRoleMappingL1_PageSizeChanged" OnSortCommand="rgRoleMappingL1_SortCommand" PageSize="20" Width="100%" Skin="Windows7">
<MasterTableView>
<Columns>
<telerik:GridBoundColumn DataField="RoleMapL1ID" AutoPostBackOnFilter="true" FilterControlAltText="Filter RoleMapL1ID column"
HeaderText="ID" UniqueName="RoleMapL1ID" Visible="false">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="BusinessRole" AutoPostBackOnFilter="true" FilterControlAltText="Filter BusinessRole column"
HeaderText="Business Role" UniqueName="BusinessRole" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="AppRoleL1" FilterControlAltText="Filter AppRoleL1 column"
HeaderText="Application Role (Level1)" UniqueName="AppRoleL1" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Usertype" FilterControlAltText="Filter Usertype column"
HeaderText="Sponsor/Site User?" UniqueName="Usertype" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DBL" FilterControlAltText="Filter DBL column"
HeaderText="DBL?" UniqueName="DBL" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Scope" FilterControlAltText="Filter Scope column"
HeaderText="Scope" UniqueName="Scope" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains" HeaderTooltip="Protocol,Country,Site">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Hierarchy" FilterControlAltText="Filter Hierarchy column"
HeaderText="Hierarchy" UniqueName="Hierarchy" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Expired" FilterControlAltText="Filter Expired column"
HeaderText="Disabled?" UniqueName="Expired" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Edit" FilterControlAltText="Filter Edit column"
HeaderText="" UniqueName="Edit" AllowFiltering="false">
</telerik:GridBoundColumn>
</Columns>
<NoRecordsTemplate>
<div style="margin:10px">
There are no roles mapped at this time.
</div>
</NoRecordsTemplate>
<SortExpressions>
<telerik:GridSortExpression FieldName="BusinessRole" SortOrder="Ascending" />
</SortExpressions>
</MasterTableView>
</telerik:RadGrid>

hii all,
i want to implement table using below format in telerik.. plz help me
___________________________
Name | |
-------------------| address |
ID | |
____________|______________|
Thanks in advance;
anju

Ok so I have an webpage, that has two combo boxes and a button. One combo box is for Purchase Orders and the other for Lot numbers. When you select a PO from combo box, details of all items on that PO are shown in a radgrid. Next to each row is an arrow that when clicked opens up a web control view, where you can add a new receiving lot. When you add a new receiving lot, it displays an .ascx within the radgrid. See attached picture for to better understand...
Problem I am running into, is that there are two comb box controls on this .ascx page; received by and Country of Origin ( COO ). These both have sql db as their data source and are running a stored proc to return results. The user should have the ability to select anything returned by database. However, at runtime, I am noticing that there is some CSS within the WebResource.axd file that is being applied to these controls, that is setting them to read only and to text. The result is that the user cannot select anything in the dropdown, in fact drop down does not even work, and the controls show the first result returned by database and it is simply being shown as text.
How can I prevent the WebResource.axd from applying these CSS attributes to my combo boxes?
Please help, this is very strange and very undesirable.

I have a RadGrid with a bunch of columns i.e:
ID | Name | Address | Phone Number1 | John Doe | 123 Fake St | 1234567Wehen I click Edit on a row I want to be able to get the ID value, which is 1.
How do I do that? I've searched through the API and wasn't able to find a concrete example.
I am using EditFormType="Template" for the RadGrid