This topic is locked
[SOLVED]

 List Page

12/8/2020 9:46:22 AM
PHPRunner General questions
CoBoL author

How can I get a list page to display in multiple columns. Bit like what you can do in a report, but I require it to be in list mode.

Because I am using this list page as a lookup page for a field.
Example
Mr Smith | Mr Brown | Mr Red

Mr Yellow | Mr Blue | Mr Green

Mr Pink | Mr Orange | Mr Help
This is what I have now
Now
And this is what I want it to look like, this is the Photoshop image.
Want
Hope this helps what I am trying to achieve.
Thanks

H
Hd_Mersintarim 12/8/2020

edit your query designer sql text

select field1,field2, concat(field1."|".field2 vs vs ) as field3 from your table

CoBoL author 12/8/2020



edit your query designer sql text

select field1,field2, concat(field1."|".field2 vs vs ) as field3 from your table


I used that as a example trying to simulate in text.

H
Hd_Mersintarim 12/8/2020

I suggest you read the topic of dynamic tab creation.
https://www.youtube.com/watch?v=x9KqkrOxrKE

CoBoL author 12/8/2020



I suggest you read the topic of dynamic tab creation.
https://www.youtube.com/watch?v=x9KqkrOxrKE


I've got the TAB's working fine, it's the three columns I require in list mode.

D
DealerModulesDevClub member 12/8/2020

Hi Dave,

To get three columns in list try:
Go to Designer Section,

Click on the List Tab so List page is shown,

Click on "Grid Type" on the right side of the page, (right now it says simple-grid),

Choose Simple vertical grid,

Go back to the right side of the designer page and below the "Grid Type", it will now show, "records per row".

Change the "record per row" from 1 to 3 and build project.
See if that will help.

Thanks

Paul

CoBoL author 12/8/2020



Hi Dave,

To get three columns in list try:
Go to Designer Section,

Click on the List Tab so List page is shown,

Click on "Grid Type" on the right side of the page, (right now it says simple-grid),

Choose Simple vertical grid,

Go back to the right side of the designer page and below the "Grid Type", it will now show, "records per row".

Change the "record per row" from 1 to 3 and build project.
See if that will help.

Thanks

Paul


Your a superstar, that worked perfect !!!!!
Thank you for your help.