|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
I want to display a content element with a surrounding border for the
rigt column. If there isn't any content I will see an empty rectangle with the border I defined for the corresponding div-tag. Is there a way to prevent templavoila from displaying that element and if not, is it planned to incorporate this feature? Thanks, Manfred _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#2
|
|||
|
|||
|
On Sun, 15 Jun 2008 17:33:33 +0200, Manfred Mirsch
<manfred.mirsch (AT) tandemmedia (DOT) de> wrote: > I want to display a content element with a surrounding border for the > rigt column. If there isn't any content I will see an empty rectangle > with the border I defined for the corresponding div-tag. > > Is there a way to prevent templavoila from displaying that element and > if not, is it planned to incorporate this feature? > > Thanks, > Manfred Hi Manfred. you could use the stdWrap on the colum to generate the div only if needet. this is only a minor edit to the typo script inside the DataStructure and don't include the "border-div" in your "static template" in the FCE greets chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.flycall.de | http://www.atr24.de | http://www.titanic.de _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#3
|
|||
|
|||
|
Hi Christian,
Thanx for your quick reply. I tried to insert a "required" into my TS inside the XML: <TypoScript><![CDATA[ 10= RECORDS 10.source.current=1 10.tables = tt_content 10.wrap.required = 1 10.wrap = <!--TYPO3SEARCH_begin--><div id="content_r"> | </div><!--TYPO3SEARCH_end--> ]]></TypoScript> But this wasn't successfull. Do you know how I could modify the TS to display the div "content_r" only in case of an existing element in the corresponding column? Have a nice evening, Manfred > On Sun, 15 Jun 2008 17:33:33 +0200, Manfred Mirsch > <manfred.mirsch (AT) tandemmedia (DOT) de> wrote: > >> I want to display a content element with a surrounding border for the >> rigt column. If there isn't any content I will see an empty rectangle >> with the border I defined for the corresponding div-tag. >> >> Is there a way to prevent templavoila from displaying that element and >> if not, is it planned to incorporate this feature? >> >> Thanks, >> Manfred > > Hi Manfred. you could use the stdWrap on > the colum to generate the div only if needet. this is only a minor edit > to the typo script inside the DataStructure > > and don't include the "border-div" in your "static template" in the FCE > > greets chris > _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#4
|
|||
|
|||
|
On Sun, 15 Jun 2008 22:18:19 +0200, Manfred Mirsch
<manfred.mirsch (AT) tandemmedia (DOT) de> wrote: > Hi Christian, > Thanx for your quick reply. I tried to insert a "required" into my TS > inside the XML: > <TypoScript><![CDATA[ > 10= RECORDS > 10.source.current=1 > 10.tables = tt_content > 10.wrap.required = 1 > 10.wrap = <!--TYPO3SEARCH_begin--><div id="content_r"> | > </div><!--TYPO3SEARCH_end--> > ]]></TypoScript> > > But this wasn't successfull. Do you know how I could modify the TS to > display the div "content_r" only in case of an existing element in the > corresponding column? > Hi Manfred, it looks like RECORDS does not support full stdWrap featurers. thats what i have seen after a look in the TS-ref. but you could use a COA to get the full stdWrap Features <TypoScript><![CDATA[ 1 =COA 1 { stdWrap.required = 1 stdWrap.wrap = <!--TYPO3SEARCH_begin--><div id="content_r">|</div><!--TYPO3SEARCH_end--> 10= RECORDS 10.source.current=1 10.tables = tt_content } ]]></TypoScript> i think this should work for your border. greets chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.flycall.de | http://www.atr24.de | http://www.titanic.de _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#5
|
|||
|
|||
|
SUPER!!!
now it works. Seems, that I have to study the TS-Ref a bit deeper. Bye, Manfred > On Sun, 15 Jun 2008 22:18:19 +0200, Manfred Mirsch > <manfred.mirsch (AT) tandemmedia (DOT) de> wrote: > >> Hi Christian, >> Thanx for your quick reply. I tried to insert a "required" into my TS >> inside the XML: >> <TypoScript><![CDATA[ >> 10= RECORDS >> 10.source.current=1 >> 10.tables = tt_content >> 10.wrap.required = 1 >> 10.wrap = <!--TYPO3SEARCH_begin--><div id="content_r"> | >> </div><!--TYPO3SEARCH_end--> >> ]]></TypoScript> >> >> But this wasn't successfull. Do you know how I could modify the TS to >> display the div "content_r" only in case of an existing element in the >> corresponding column? >> > > Hi Manfred, it looks like RECORDS does not support full stdWrap featurers. > thats what i have seen after a look in the TS-ref. but you could use a COA > to get the full stdWrap Features > > > <TypoScript><![CDATA[ > 1 =COA > 1 { > stdWrap.required = 1 > stdWrap.wrap = <!--TYPO3SEARCH_begin--><div > id="content_r">|</div><!--TYPO3SEARCH_end--> > 10= RECORDS > 10.source.current=1 > 10.tables = tt_content > } > ]]></TypoScript> > > i think this should work for your border. > > greets chris > > _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3-templavoila] upgrade to 4.2 TV elements empty | Costa Papadopoulo | typo3-project-templavoila@lists.netfielders.de | 1 | 31.05.2008 12:10 |
| [TYPO3-templavoila] Remove empty FCE tags | Benjamin Todd | typo3-project-templavoila@lists.netfielders.de | 0 | 31.01.2008 16:09 |
| [TYPO3] Random content empty 50% of the time | Patrick Scholman | typo3-english@lists.netfielders.de | 0 | 11.01.2008 08:58 |
| [TYPO3-templavoila] hiding complicated settings of frontendextensions by using an FCE | Claudius Heitz | typo3-project-templavoila@lists.netfielders.de | 4 | 05.12.2007 22:26 |
| [TYPO3-templavoila] Hiding non-mapped fields in TV Page module | Francois Suter | typo3-project-templavoila@lists.netfielders.de | 5 | 03.09.2007 15:16 |