Questions tagged [pagedcollectionview]

16 questions
7
votes
2 answers

Silverlight: Paging data from the server

I have a server-side API which provides paged data in JSON format based on various query parameters. I would like to provide a UI that allows the user to paged through the results of a query. I am aware of the various component parts that permit…
ColinE
  • 68,894
  • 15
  • 164
  • 232
5
votes
1 answer

How to change the grouping title from property name to something more descriptive

When adding a PropertyGroupDescription to the PageCollectedView.GroupDescriptions I supply null as the property name, and an IValueConverter. I do this so that I can make a single grouping on a set of property values. Howerver the display shows a…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
4
votes
4 answers

Silverlight: disable automatic first-row selection after DataGrid binding

I have a Silverlight DataGrid, a DataPager and a PagedCollectionView. After the PagedCollection view is bound to the DataGrid, the first row of the DataGrid is selected. This behaviour does not happen, if i am using an ObservableCollection. But due…
3
votes
1 answer

Is there a ListCollectionView or a PagedCollectionView classe for Windows Phone 7.5 (Mango)

I know there exists a PagedCollectionView class for Silverlight, and a ListCollectionView class for WPF. But i don't find either of these being available for Windows Phone 7.5 (Mango) latest release. If i am wrong in my understanding, please let me…
3
votes
1 answer

Where is PagedCollectionView in Silverlight 5?

Where is PagedCollectionView in Silverlight 5? I'm trying to convert a SL3 app to 5 but can't find PagedCollectionView.
Neil Knight
  • 47,437
  • 25
  • 129
  • 188
2
votes
1 answer

PagedCollectionView not found in Silverlight 4 (again? yes)

I know this will sound quite redundant, but sadly, no answer I have found to this problem online helped me. I am running Visual Studio 2010, and using the Silverlight 4 SDK (April 2011 version) for my project. (set in the properties, I…
1
vote
1 answer

How to pin the edges of a CollectionViewCell to the CollectionView when using PagedView

I'm using AutoLayout and have a collectionView that has Paging Enabled. I want each CollectionViewCell to be exactly the width & height of it's CollectionView Container. However, on AutoLayout when I select the CollectionViewCell and try to pin it's…
1
vote
1 answer

how to track changes to PageCollectionView SortDescriptions

When a DataGrid is bound to a PagedCollectionView the user can resort the data of a given column or collection of columns. This user action manipulates the SortDescriptions collection and when that happens I need to refresh the underlying data with…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
1
vote
1 answer

CellEditEnded happens too late

When the user changes the value of a cell (DataGridCheckBoxColumn) and then clicks on another UI element outside of the datagrid, the click event of the other UI element fires before the datagrid CellEditEnded. This is a problem because in my case…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
0
votes
2 answers

Custom Sorting in PagedCollectionview & Silverlight

Can you help me customise sorting in silverlight using PagedCollectionview mapped to an observablecollection.Below is the code that is working fine for the sort part but it does not refreshes the grid as the sorting from the first column is not…
xoanon
  • 195
  • 1
  • 10
0
votes
1 answer

Binding array of arrays or dynamic to a datagrid

I am attempting to bind an array of arrays to a DataGrid. I am aware that I could do this fairly easily by converting the data to a DataTable and then binding that. BUT this isn't what I need as I need to be able to add groupings to the data via a…
tigerswithguitars
  • 2,497
  • 1
  • 31
  • 53
0
votes
2 answers

Hide and Reorder Columns in PagedCollectionView

I'm having a silverlight 5.0 app in that im having a PagedCollectionView which is having an ObservableCollection of Employees. I have bound my PagedCollectionView to DataGrid. I don't want to show all of my properties of employees in the…
0
votes
1 answer

Paged collection view edititem in silverlight 4 application

How to use EditItem method for pagedcollectionview in silverlight 4 application..??
siva
  • 61
  • 1
  • 3
  • 10
0
votes
1 answer

Binding to custom properties

A few hours ago I posted a question (http://stackoverflow.com/questions/11134264/c-sharp-add-properties-at-runtime). I asked about extending existing class with new properties. And, that was ok. I managed adding new propertis, but now I need to add…
Srecko
  • 199
  • 4
  • 14
0
votes
1 answer

PagedCollectionView Filter not reapplied after data changes

I have a PCV created on a set of entities returned from a RIA services call. Basic stuff. The PCV has a filter property set. When entites are changed (through a different feature of the UI) the PCV does not update --- there doesn't seem to be any…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
1
2