Hello,
I recently upgraded to ChronoForms/ChronoConnectivity v4, and am having trouble re-creating my often-used forms and connections. I feel like there must be an easy answer to the below, but I've been searching for hours for guidance/documentation/tutorial and am coming up dry, so I guess I'll have to ask the question...
1. I can't find an equivalent to the "Header/Title" section anywhere in Chronoconnectivity v4. Am I going crazy? Can you not add a title to your connection table???
2. I have generated a ChronoConnectivity "connection" and am using Auto Listing to display two columns of a linked database: Proper Name and Home Address. Under Frontend List Settings, I have Auto Listing set to "Yes", and in the List View Fields, I have entered the following: "proper_name:Proper Name, home_address: Home Address". When I view the front end, my headers display correctly, my "Proper Name" column displays correctly, but the "Home Address" column displays the exact text "Home Address" both in the header and in every database line underneath it, as opposed to displaying "Home Address" in the header bar and the actual ADDRESSES on the database lines. When I reverse the data in List View Fields - home_address: Home Address, proper_name:Proper Name - it does the exact opposite; lists the correct addresses in the first column and the text "Proper Name" in every row of the table. So the second column just doesn't work. What am I doing wrong????
I recently upgraded to ChronoForms/ChronoConnectivity v4, and am having trouble re-creating my often-used forms and connections. I feel like there must be an easy answer to the below, but I've been searching for hours for guidance/documentation/tutorial and am coming up dry, so I guess I'll have to ask the question...
1. I can't find an equivalent to the "Header/Title" section anywhere in Chronoconnectivity v4. Am I going crazy? Can you not add a title to your connection table???
2. I have generated a ChronoConnectivity "connection" and am using Auto Listing to display two columns of a linked database: Proper Name and Home Address. Under Frontend List Settings, I have Auto Listing set to "Yes", and in the List View Fields, I have entered the following: "proper_name:Proper Name, home_address: Home Address". When I view the front end, my headers display correctly, my "Proper Name" column displays correctly, but the "Home Address" column displays the exact text "Home Address" both in the header and in every database line underneath it, as opposed to displaying "Home Address" in the header bar and the actual ADDRESSES on the database lines. When I reverse the data in List View Fields - home_address: Home Address, proper_name:Proper Name - it does the exact opposite; lists the correct addresses in the first column and the text "Proper Name" in every row of the table. So the second column just doesn't work. What am I doing wrong????
Issue can be viewed here:
http://www.indyhhh.com/jupgrade/index.php/nash-hash-2014/who-s-cumming-to-nash
Thanks so much for your help... I'm sure it's a simple solution, but I just can't figure it out for the life of me...
http://www.indyhhh.com/jupgrade/index.php/nash-hash-2014/who-s-cumming-to-nash
Thanks so much for your help... I'm sure it's a simple solution, but I just can't figure it out for the life of me...
Migrated site. Issue can be seen here now: http://www.indyhhh.com/index.php/nash-hash-2014/who-s-cumming-to-nash
I hear you're good at easy questions like these, Max... ideas?
Thanks!
I hear you're good at easy questions like these, Max... ideas?
Thanks!
Hi,
#1- You mean a header for the whole page ? like <h1> or <h2> tag ? if yes then you will need to either use "Custom listing" to hard code this OR to use the task control and add any text above the listing action.
#2- Please remove the spaces between the fields names:
Regards,
Max
#1- You mean a header for the whole page ? like <h1> or <h2> tag ? if yes then you will need to either use "Custom listing" to hard code this OR to use the task control and add any text above the listing action.
#2- Please remove the spaces between the fields names:
proper_name:Proper Name,home_address:Home Address
Regards,
Max
#1: Bummer. I really like the table view that the "auto listing" option provides, and I'm not code-savvy enough to develop the code to make it look so nice with a custom listing. Is there a way to view the code that is generated by the auto listing so that I can modify it and publish it as a custom listing?
#2: I knew it had to be something simple. Thanks SO MUCH!!!!!
#2: I knew it had to be something simple. Thanks SO MUCH!!!!!
Hi Schultz,
The listing is pretty much just an HTML table. If you do View Source on the listing or use your browser web developer tools you can easily see the code generated.
As a very basic example the Header box needs to contain this:
The Body box needs:
And the Footer box
Bob
The listing is pretty much just an HTML table. If you do View Source on the listing or use your browser web developer tools you can easily see the code generated.
As a very basic example the Header box needs to contain this:
<table>
<thead>
<tr>
<th>Some heading</th>
<th>Another heading</th>
. . .
</tr>
</thead>
<tbody>
The Body box needs:
<tr>
<td>{column_name_1}</td>
<td>{column_name_2}</td>
. . .
</tr>
And the Footer box
</tbody>
</table>
Bob
This topic is locked and no more replies can be posted.