Questions tagged [gmgridviewcell]

9 questions
2
votes
3 answers

iOS GMGridView how to reuse GMGridViewCell cells?

I noticed that every time my GMGridView needs to refresh, it re-creates all cells, which takes a long time. Is there some way to assign a reuse identifier to GMGridViewCell or somehow ensure they are reusable? Here's the code that I have that…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
1
vote
1 answer

is there any cell number limitation when GridView.AutoGenerateColumns false?

I have a problem when I am generating a GridView column manually. my program stops at this line: e.Row.Cells[42].Text = "x"; and throws the below error: "Specified argument was out of the range of valid values. Parameter name: index …
Afagh johari
  • 9
  • 1
  • 3
1
vote
1 answer

Image not fitting in grid view cell in windows phone 8

i want to append the image url to image controller in grid view . but image is not properly fitted to grid view cell. so please any one help me to how to do this. MY CODE:
1
vote
1 answer

Cell highlighting for the GMGridView

I'm using the GMGridView with a subclassed UIView as the contentView of the cells. These are assigned in the - (GMGridViewCell *)GMGridView:(GMGridView *)gridView cellForItemAtIndex:(NSInteger)index Now I'd like the cells to have a highlight,…
taymless
  • 779
  • 2
  • 9
  • 24
1
vote
1 answer

Approach of how to put a GMGridView inside a UITableViewCell?

i don't know how should i get a GMGridView (horizontal only) into a UITableViewCell, i tried adding as a subview but It gets messed up... any ideas? the code is in fact simple... HorizontalGridViewController *pics = [[HorizontalGridViewController…
NSCabezon
  • 59
  • 5
0
votes
1 answer

Images in GMGridViewCells (using xib) are swapping while scrolling

I have implemented GmGridView in my project. but images are swapping in gridViewCells. the answer in this SO POST didn't helped. Code in cellForItemAtIndex CGSize size = [self GMGridView:gridView sizeForItemsInInterfaceOrientation:[[UIApplication…
Rugmangathan
  • 3,186
  • 6
  • 33
  • 44
0
votes
1 answer

GMGridViewCell not shaking

I have used GMGridView inside my app. When I change the orientation all is fine, but if I change it again and enter edit mode all the cells are shacking except the visible one in the lower-right corner. The GmGridView is added as a subview to a…
Toncean Cosmin
  • 535
  • 4
  • 19
0
votes
1 answer

Add another view in GMGridView

Hello all, I have to add one more view in cell of GMGridView. But i am unable to do this because i have to drag my label from view to view1. My code is : - (GMGridViewCell *)GMGridView:(GMGridView *)gridView1 cellForItemAtIndex:(NSInteger)index …
Abha
  • 1,032
  • 1
  • 13
  • 36
0
votes
1 answer

GMGridViewCell CustomView Button action method is not getting called?

I have a view controller with GMGridView in which I have 4 GMGridViewCells. For each cell view I am using individual view controller view's as the content view of the cell.My view controllers which are being loaded into the GMGridVeiwCell's are…
CKT
  • 1,223
  • 4
  • 21
  • 39