3 Answers, 1 is accepted
0
Hello Katte,
I am afraid this behavior is not supported. Sorry for the inconvenience.
Sincerely yours,
Dimo
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
I am afraid this behavior is not supported. Sorry for the inconvenience.
Sincerely yours,
Dimo
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Princy
Top achievements
Rank 2
answered on 19 Jun 2009, 08:09 AM
Hello Katte,
You can try setting certain attributes in the css class for last columns to freeze it as shown below. Probably this should help.
aspx:
css:
Thanks
Princy.
You can try setting certain attributes in the css class for last columns to freeze it as shown below. Probably this should help.
aspx:
| <telerik:GridBoundColumn DataField="Notes" HeaderText="LastColumn" SortExpression="Notes" UniqueName="LastColumn"> |
| <HeaderStyle CssClass="FreezingCol_Header" /> |
| <ItemStyle CssClass="FreezingCol_Item" /> |
| </telerik:GridBoundColumn> |
css:
| <style type="text/css"> |
| .FreezingCol_Header |
| { |
| position: relative; |
| left: expression(document.getElementById("RadGrid1").scrollLeft); |
| z-index: 1; |
| border-top-width: 0px; |
| border-left-width: 0px; |
| border-right-width: 0px; |
| border-bottom-width: 0px; |
| } |
| .FreezingCol_Item |
| { |
| position: relative; |
| left: expression(document.getElementById("RadGrid1").scrollLeft); |
| z-index: 1; |
| border-top-width: 1px; |
| border-left-width: 0px; |
| border-right-width: 0px; |
| border-bottom-width: 0px; |
| } |
| </style> |
Thanks
Princy.
0
Katte
Top achievements
Rank 1
answered on 19 Jun 2009, 08:30 AM
Hi Princy,
Thanks for reply. Your solution is not working for me. My idea was to make the edit and Delete column as static which are end column.
Regards,
Katte
