Questions tagged [collectionview]

The Marionette CollectionView displays a Backbone collection object by rendering each objects through the specified childView View object.

Docs

1294 questions
0
votes
0 answers

ICollectionView filtering issue

i'm having a ICollectionView with filtering in colde. the problem is that the filtering never executes... this is the code: private ObservableCollection _jobSizes; private CollectionViewSource _jobSizesSource; public ICollectionView…
kaycee
  • 1,199
  • 4
  • 24
  • 42
0
votes
1 answer

Using Predicate of the ICollectionView

I've the following: public enum ValidationSeverity { Error = 1, Warning = 2 } Public class Errors { public ValidationSeverity Severity { set; get; } public string Desc { set; get; } } in the ViewModel defined ObservableCollection,…
Ramzy Abourafeh
  • 1,195
  • 7
  • 17
  • 35
0
votes
1 answer

Compiling html templates using handlebars.js in backbone marionette CollectionView

I am using backbone marionette with handlebars.js and require.js. So I know how to use templates if we don't have to supply anty dynamic value. But now I have to show a list of employees using CollectionView of marionette framework So now I am not…
Nikhil Agrawal
  • 26,128
  • 21
  • 90
  • 126
0
votes
0 answers

in Ember, how to add item to CollectionView dynamically, I create one jsbin, but i saw duplicated items/

How to add item to CollectionView dynamically in Emberjs? I see every time I add one item to the controller, the collectionView renders again ,just append to the one just rendered. Here is the jsbin link http://jsbin.com/iBaC/1/edit
user2699589
  • 41
  • 1
  • 6
0
votes
1 answer

xcode title bar / collection view

probably an easy solution to this, but not sure how. I'm using colelction view with a tab bar. I'm unable to drag a navigation bar on to the view from the objects pannel, and selecting the navigation bar from the properties pannel works, but…
aaip
  • 31
  • 6
0
votes
1 answer

Collection view thumbnail images not displaying

The issue I am having is this: 1) Some of the preview thumbnails do not show, but displays the full picture when clicked as it's meant to when clicked. This is the main code that implements the thumbnails: ` NSString *imageToLoad = [NSString…
aaip
  • 31
  • 6
0
votes
1 answer

xCode: How to sort a collection view with long press?

I have a scroll view now. It has 2 images in each row. I wanna to add long press sorting for this view but I think its better to replace this scroll view with a collection view for easier sorting. I didn't find anything to learn how to sort a…
0
votes
1 answer

How can i highlight selected cell's in PSTCollectionview?

Iam using PSTCollection view for grid layout so it will support iOS 5.0 onward ,but when i click one cell its working fine .Iam trying to implement a selection effect like a glow border on selected cell so it will increase user experience.Any one…
Navi
  • 1,696
  • 2
  • 17
  • 36
0
votes
2 answers

Unload UICollectionview and reload?

I have a probem when trying to reload a UICollectionview in iOS. I am using it to display levels in a game. The collectionview consists of 10 cells. The content of the cells depends if a level is unlocked. If the level is unlocked the cell displays…
CCDEV
  • 371
  • 1
  • 5
  • 16
0
votes
1 answer

how to place two collection views on top of a UIView with a UIImage view in between

iOS Simulator Screen shot Jun 19, 2013 2.43.43 PM.png!Main Storyboard description
Hblegg
  • 189
  • 2
  • 10
0
votes
1 answer

How to add textfields on uicollection view?

i am doing a project ,where i have to show a view like this i tried to use table view ,but i was unable to implement ,after that i have decided to implement this with the help of collection view.but nothing fruitful happened .i get frustated here…
Priyanka
  • 71
  • 1
  • 5
0
votes
1 answer

Reference position in CollectionView IOS

Problem with reference position in CollectionView I made a simplified example of my problem. I'm using storyboard with a CollectionView, but then I leave that view and return the elements out of place. The problem occurs after I connect the @…
Claudia Mardegan
  • 567
  • 4
  • 14
0
votes
1 answer

New to Reactive Extensions (Rx), trying to run a CollectionView.Refresh() in a different thread. How?

I have a fairly large amount of data, and binding ListViews, DataGrids with CollectionView, and using OnFilter event to filter the CollectionView. So when loading data for CollectionView and also when string property FilterString changes, it calls…
0
votes
1 answer

Event on didSelctItemAtIndexPath when this is into header - iOS

I was building a app on iOS, and in a collectionView I have a header, and needs create event "touch up inside" for this header, like i 've create in the others cells of the collectioView -(void)collectionView:(UICollectionView *)collectionView…
Lito
  • 2,309
  • 1
  • 23
  • 29
0
votes
1 answer

WPF Paging implement crash when selection is changed

I am using the following code for a wpf DataGrid: How can I paginate a WPF DataGrid? The paging works fine except that when i move to any page besides the first one and try to pick (press) any row/cell i am getting the following exception…
Matan L
  • 997
  • 3
  • 14
  • 35