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

Extra Column in grid

5 Answers 66 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jebamalai
Top achievements
Rank 1
Jebamalai asked on 11 Nov 2008, 10:57 AM
Dear All,

I have an AJAX Grid in my application.

It is displayed in hierarchical mode.

While binding the data to it, it has a column between the expand indicator and the columns that is bounded.

I am binding the grid dynamically.

5 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 11 Nov 2008, 11:33 AM
Hello Jebamalai,

It seems there is a problem with your pictures. Please reattach them to a formal support ticket.

Thank you for your cooperation.

Best regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jebamalai
Top achievements
Rank 1
answered on 11 Nov 2008, 11:38 AM
Dear Daniel,

I have reattached the picture.

Best Regards,
M. Jebamalai Jaya Chitra
0
Daniel
Telerik team
answered on 11 Nov 2008, 12:04 PM
Hello Jebamalai,

Please open a support ticket and attach the screenshots inside. I created two images illustrating how to submit a ticket.

I hope this helps.

Regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jebamalai
Top achievements
Rank 1
answered on 11 Nov 2008, 12:28 PM
Dear Danial,

Thanks for your timely help.

I have no support ticket for the AJAX RAD Controls.

I have checked the demos in your site.

In that also a column is in between the expander column and the data columns.

So I think it is built in.

Any way, thanks for your support.

Best Regards,
M. J. Jaya Chitra.
0
Daniel
Telerik team
answered on 11 Nov 2008, 01:30 PM
Hello Jebamalai,

I suppose you mean the RowIndicatorColumn. Please test the above approach in order to hide the mentioned column:
protected void Page_PreRender(object sender, EventArgs e) 
    foreach (GridColumn column in RadGrid1.MasterTableView.RenderColumns) 
    { 
        if (column.ColumnType == "GridRowIndicatorColumn"
            column.Display = false
    } 

Regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
Jebamalai
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Jebamalai
Top achievements
Rank 1
Share this question
or