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.
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
0
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.
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
I have reattached the picture.
Best Regards,
M. Jebamalai Jaya Chitra
0
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.
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.
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
Hello Jebamalai,
I suppose you mean the RowIndicatorColumn. Please test the above approach in order to hide the mentioned column:
Regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
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.