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

Can the grid freeze a row?

4 Answers 167 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Jerry Kurata
Top achievements
Rank 1
Jerry Kurata asked on 05 Oct 2010, 10:38 PM
Hi,

My users have requested a feature that would freeze a row in the grid.  That is they want to select a row, press a button, and have the row always appear as the first row of the grid.  The idea would be to scroll through the other rows and compare them to the frozen row.
Is this possible?

jerry

4 Answers, 1 is accepted

Sort by
0
Maya
Telerik team
answered on 06 Oct 2010, 07:06 AM
Hi Jerry Kurata,

You may take a look at this blog post for a reference.
 

Sincerely yours,
Maya
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Marina
Top achievements
Rank 1
answered on 11 Mar 2011, 10:38 AM
Hi.
Is it possible to show freezes rows at the bottom of the grid?
0
Maya
Telerik team
answered on 14 Mar 2011, 12:40 PM
Hello Marina,

If you want to define the "frozenRowsContainer" at the bottom, you might consider changing the template of the RadGridView and define the most appropriate for your scenario place.
Another possibility may be to set it outside of the grid - in the main Grid. It might be something like:

this.frozenRowsContainer = new RadGridView();
frozenRowsContainer.Columns.Add(new PinColumn() { FrozenRowsBehavior = this, IsPinned = true });   
Grid grid = (this.AssociatedObject as RadGridView).ParentOfType<Grid>();
   

Kind regards,
Maya
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
Marina
Top achievements
Rank 1
answered on 15 Mar 2011, 02:01 PM
Thank you Maya.
Tags
GridView
Asked by
Jerry Kurata
Top achievements
Rank 1
Answers by
Maya
Telerik team
Marina
Top achievements
Rank 1
Share this question
or