I am in an interim process of planning to migrate my employer's website to CMSMS and just scoping what needs to be done.
I would like some advice on the following draft page: http://www.basle3.com/draft/template_detail_job.php
and in particular the table shown containing 5 rows and 2 columns.
The left-hand column contains static data labels common to all pages of this type.
The right-hand column will be dynamic data unique to each page.
My question is, would the technique for coding this in a CMSMS template to have each dynamic data item in the second column assigned as a separate content block (i.e. thereby creating 5 separate content panes in the admin user interface all for a small amount of data), or is there a better, more compact way of doing this.
Thanks in advance for your advice on this.
Best technique for tabular content
Re: Best technique for tabular content
{content} tag has parameter oneline=false which could help if you want them on separate input fields.
I would probably try some of those jobmodules in forge to see if those can ease your page creation.
hope this helps
edit--
oneline=true of course
I would probably try some of those jobmodules in forge to see if those can ease your page creation.
hope this helps
edit--
oneline=true of course

Re: Best technique for tabular content
TSW - that's absolutely perfect thank you! A very elegant solution.tsw wrote: {content} tag has parameter oneline=false which could help if you want them on separate input fields.
I would probably try some of those jobmodules in forge to see if those can ease your page creation.
hope this helps
edit--
oneline=true of course![]()

Just one additional question related to this...
The last dynamic data item for these fields that is captured when entering the page content is the "Ref No". This as you can see is displayed on the page, but it is also used as a hidden field behind the Apply button. This value is passed to the receiving page.
See an example of the code below:
Code: Select all
<form enctype="multipart/form-data" method="post" action="Resourcing-UploadYourCV.php">
<p> </p>
<input type="hidden" value="CKCJ1304" name="reference"/>
<input type="submit" value=" Apply " name="Submit" style="position: relative; right: -122px; bottom: 0px;"/>
</form>
Code: Select all
<input type="hidden" value="xxxxxxxx" name="reference"/>
Thanks again in anticipation of your/someone's help with this.
Re: Best technique for tabular content
you could do something like
{capture name="refno" assign="my_refno"} {content block="refno" oneline="true"} {/capture}
after that you can use {$my_refno} to print it out anywhere you like
hope this helps
{capture name="refno" assign="my_refno"} {content block="refno" oneline="true"} {/capture}
after that you can use {$my_refno} to print it out anywhere you like
hope this helps
Re: Best technique for tabular content
TSW - thanks for that. Another perfect 10! 
I really appreciate your help.

I really appreciate your help.