Forums

Table Not Displaying

jnendel 04 Mar, 2010
I am just starting out in ChronoConnectivity and I just cannot figure out what I am missing. When I click on Show Data in the control panel the records are all there but when I click the link I never see any records. What am I missing? I made all the rights guest access.
GreyHead 04 Mar, 2010
Hi jnendel,

Sorry but there's just not enough information there to say anything useful. Perhaps a link to the page, or some of the CC code you've used might help.

Bob
jnendel 09 Mar, 2010
I didn't realize that PHP code needed to be added to the Header & Body sections. The table is now displaying the data but the formatting is very basic. I saw a link, in another post that I cannot seem to locate now, of a personal site that had some simple but nice formatting. Any help in locating that post or link?
GreyHead 09 Mar, 2010
Hi jnendel,

A typical ChronoConnectivity layout would be a table with a <tr> row in the Body section.

Sorry, I've no idea which post you might be thinking of. A Google search of the forums should find you some examples.

Bob
achiet 03 May, 2010
I have another problem regarding the table. Here's what I write in the Body:
<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>E-mail</th>
        </tr>
    </thead>
    <tbody>
    <tr>
            <td>{text_1}</td>
            <td>{text_2}</td>
        </tr>
    </tbody>
</table>

But the field name emerged over and over again for each record. It's not like what I wanted. In this table, I want the field name only emerge once, that is on top of all records. Please help. Thanks
achiet 03 May, 2010
Sorry, already solve it my self. Thanks to learning Bob's answers in other topics. I moved the
<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>E-mail</th>
        </tr>
    </thead>
to the header, and the
</table> 
to the footer. Thanks alot, Bob!!
This topic is locked and no more replies can be posted.