Hi,
i creted a connection with a chronoform with a date
code, name, type (fields name are: cod, name and tipo)
but the table created don't work well, thath is, the table shows the code, but not the name and the type
i checked db chronoform and work properly and in
list view fields(admin list setting) i write
cod:CODICE, name:NOME, tipo:TIPO
what I did wrong?
i creted a connection with a chronoform with a date
code, name, type (fields name are: cod, name and tipo)
but the table created don't work well, thath is, the table shows the code, but not the name and the type
<table class="adminlist">
<thead>
<tr>
<th width="31%" class="th-cod">CODICE</th>
<th width="31%" class="th-name">NOME</th>
<th width="31%" class="th-tipo">TIPO</th>
</tr>
</thead>
<tbody><tr class="row0">
<td width="31%" class="center td-cod">
M001 </td>
<td width="31%" class="center td-name">
NOME </td>
<td width="31%" class="center td-tipo">
TIPO </td>
</tr>
<tr class="row1">
<td width="31%" class="center td-cod">
M002 </td>
<td width="31%" class="center td-name">
NOME </td>
<td width="31%" class="center td-tipo">
TIPO </td>
</tr>
<tr class="row0">
<td width="31%" class="center td-cod">
M003 </td>
<td width="31%" class="center td-name">
NOME </td>
<td width="31%" class="center td-tipo">
TIPO </td>
</tr>
<tr>
<td colspan="7" style="white-space:nowrap;" height="20px">
<div class="container"><div class="pagination">
<div class="limit">Visualizza n.<select id="limit" name="limit" class="inputbox" size="1" onchange="Joomla.submitform();">
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20" selected="selected">20</option>
<option value="25">25</option>
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="0">Tutte</option>
</select>
</div>
<div class="limit"></div>
<input type="hidden" name="limitstart" value="0">
</div></div> </td>
</tr>
</tbody></table>
i checked db chronoform and work properly and in
list view fields(admin list setting) i write
cod:CODICE, name:NOME, tipo:TIPO
what I did wrong?
Hi Sciadini,
What is this code supposed to be and where are you putting it?
If it is in the Custom Body box of a ChronoConnectivity listing then you only need the <tr></tr> part; and you add values with {input_name}.
Bob
What is this code supposed to be and where are you putting it?
If it is in the Custom Body box of a ChronoConnectivity listing then you only need the <tr></tr> part; and you add values with {input_name}.
Bob
No this is the table (outcome) that I see in admin (I copied the source code online)
i insert in list view fields(admin list setting) this
cod:CODICE, name:NOME, tipo:TIPO
what else should I do to see the table correctly?
i insert in list view fields(admin list setting) this
cod:CODICE, name:NOME, tipo:TIPO
what else should I do to see the table correctly?
I found the error
i write field with space after the comma, and this is wrong
the correct is
cod:CODICE,name:NOME,tipo:TIPO
and not
cod:CODICE, name:NOME, tipo:TIPO
so, then don't use the spaces!!!!
i write field with space after the comma, and this is wrong
the correct is
cod:CODICE,name:NOME,tipo:TIPO
and not
cod:CODICE, name:NOME, tipo:TIPO
so, then don't use the spaces!!!!
This topic is locked and no more replies can be posted.