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

Disable Add new record in MasterTableView

2 Answers 323 Views
Grid
This is a migrated thread and some comments may be shown as answers.
saravanakumar subramaniam
Top achievements
Rank 1
saravanakumar subramaniam asked on 05 Jul 2011, 03:57 PM
Hi,

I am using AJAX "Grid / Update/Insert/Delete in Hierarchy", in which i am displaying two grid in hierarchy. In the two level of grid i don't want to add/edit/delete the row on first level(MasterTableView). But i need to apply Add/Edit/Delete operation for second level of table view. How can i disable the "Add new record" option in master grid view.

Thanks

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 06 Jul 2011, 05:22 AM
Hello Saravanakumar,

You can control the appearance of  "Add New Record" in MasterTableView and DetailTable by setting the CommandItemDisplay.

aspx:
<DetailTables>
    <telerik:GridTableView DataKeyNames="TerritoryID" Name="Detail" DataSourceID="SqlDataSource2"
          AutoGenerateColumns="True" CommandItemDisplay="Top">
                       . . . ..
    </telerik:GridTableView>
</DetailTables>


Thanks,
Shinu.
0
Jayesh Goyani
Top achievements
Rank 2
answered on 06 Jul 2011, 06:53 AM
hi,
<telerik:RadGrid>
                            <MasterTableView CommandItemDisplay="Top">
                                <CommandItemSettings ShowAddNewRecordButton="false" />
                                <DetailTables>
                                    <telerik:GridTableView CommandItemDisplay="Top">
                                        <CommandItemSettings ShowAddNewRecordButton="false"
                                    </telerik:GridTableView>
                                </DetailTables>
                            </MasterTableView>
                        </telerik:RadGrid>

u can set visibility by this "ShowAddNewRecordButton="false/True" "

Thanks,
Jayesh Goyani
Tags
Grid
Asked by
saravanakumar subramaniam
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Jayesh Goyani
Top achievements
Rank 2
Share this question
or