Closed (fixed)
Project:
Views Bonus Pack
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
28 Dec 2006 at 16:30 UTC
Updated:
4 May 2007 at 19:48 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
Anonymous (not verified) commentedFantastic !
Exactly what' I've been looking for :)
Thank you.
Comment #2
Anonymous (not verified) commentedJust a question please : where and how do we specify the width of the grid for eg. 3x3 ?
Comment #3
eaton commentedYou'd have to specify it in the 'argument handler' portion of the view.
Comment #4
mfredrickson commentedThe patch has a slight error: the line that reads
$cols = $views->gridcount ? $views->gridcount : 4;should be$cols = $view->gridcount ? $view->gridcount : 4;Rerolled and attached.
Comment #5
merlinofchaos commentedComment #6
(not verified) commentedComment #7
patrickfgoddard commentedFor anyone else stumped on how to take advantage of this, in the "Argument Handing Code" box put:
$view->gridcount = 3;
or whatever you count you want.