Categories > TinyButStrong general >

Joomla and Grid

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: RobN
Date: 2010-10-19
Time: 01:23

Joomla and Grid

Hi,
Just wondering if it is pull data from a table and then display it in a grid (say 8 by x), so if the query is:
{tbs}mergeblock=u;sql=SELECT name, email FROM jos_users ORDER BY name{/tbs}

The result would be:
Name1   Name2   Name3   Name4   Name5   Name6   Name7   Name8
Email1  Email2  Email3  Email4  Email5  Email6  Email7  Email8
Name9   Name10  Name11  Name12  Name13  Name14  Name15  Name16
Email9  Email10 Email11 Email12 Email13 Email14 Email15 Email16
etc

Or would something need to be done via PHP?
By: Skrol29
Date: 2010-10-19
Time: 10:35

Re: Joomla and Grid

Hi,

You can do this without PHP.
All you need it to use a block in serial mode. See "Display in columns (serial)" in the on line examples.
By: RobN
Date: 2010-10-28
Time: 00:14

Re: Joomla and Grid

Thanks, that worked.