This is a migrated thread and some comments may be shown as answers.

grid hierarchy

1 Answer 46 Views
Grid
This is a migrated thread and some comments may be shown as answers.
mww
Top achievements
Rank 1
mww asked on 08 May 2009, 09:13 AM
I have a grid with a 3 table hierarchy.  I have command toolbars on the first 2 tables so I can add records.  (CommandItemDisplay="Top")

For the 3rd table I dont want users to be able to add rows manually as its done automatically through another process.  How can I remove the command toolbar from the final table in the hierarchy ?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 08 May 2009, 10:29 AM
Hi,

The CommandItem will be displayed only when we set the CommandItemDisplay property. You may set the CommandItemDisplay property to None for the third Detail table if not required.

ASPX:
 
 <DetailTables> 
         <telerik:GridTableView runat="server" CommandItemDisplay="None" Name="Detail3"   DataSourceID="SqlDataSource1"  > 
            


Shinu.
Tags
Grid
Asked by
mww
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or