Re: [TYPO3-english] Combining 2 conditions with TS: cObj:parentRecordNumber=2 AND colPos=0

2013-06-07 Thread Bert Hiddink [BENDOO e-work solutions]
Hello Joey, On 6/6/13 10:20 PM, JoH asenau wrote: dataWrap.if{ value = 2 equals.data=cObj:parentRecordNumber } dataWrap.if{ value=0 equals.field = colPos } There are several options, but I prefer this one: dataWrap.if { value = 2#0

[TYPO3-english] localization tab missing in templavoila

2013-06-07 Thread Joydeep Bakshi
Dear list, I'm using templavoila 1.7.0 in both typo3 4.7.12 as well as typo3 6.1.1 and in both the cases the localization tab is missing. I also tried with templavoila 1.8; same issue. Has anyone face such issue with templavoila ? Is there any fix exist ? Thanks

Re: [TYPO3-english] Cannot get getTypoLink_URL function to work in my eID extension

2013-06-07 Thread Stephan Schuler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hey there. Just like Richard says: There is no TSFE in eID calls. TSFE brings lots of stuff, including completely rendered TypoScript, which is based on having a proper target page id detected. As long as you don't do something that relies on

Re: [TYPO3-english] localization tab missing in templavoila

2013-06-07 Thread Anisur
Hi Joydeep, Select the ISO value (dropdown list) for the additional languages you are adding. Then the localization tab will be visible in Templavoila Page module. Regards, Anisur On Fri, Jun 7, 2013 at 1:30 PM, Joydeep Bakshi joydeep.bak...@infoservices.in wrote: Dear list, I'm using

[TYPO3-english] localization tab missing in templavoila

2013-06-07 Thread Joydeep Bakshi
Hello Anisur, Appreciate your help. Thanks a lot and have a nice day. Hi Joydeep, Select the ISO value (dropdown list) for the additional languages you are adding. Then the localization tab will be visible in Templavoila Page module. Regards, Anisur On Fri, Jun 7, 2013 at 1:30 PM,

Re: [TYPO3-english] Combining 2 conditions with TS: cObj:parentRecordNumber=2 AND colPos=0

2013-06-07 Thread Bert Hiddink [BENDOO e-work solutions]
Hello Joey, On 7/6/13 8:01 AM, Bert Hiddink [BENDOO e-work solutions] wrote: Hello Joey, On 6/6/13 10:20 PM, JoH asenau wrote: dataWrap.if{ value = 2 equals.data=cObj:parentRecordNumber } dataWrap.if{ value=0 equals.field = colPos } There

Re: [TYPO3-english] Combining 2 conditions with TS: cObj:parentRecordNumber=2 AND colPos=0

2013-06-07 Thread JoH asenau
There are several options, but I prefer this one: dataWrap.if { value = 2#0 equals.dataWrap = {cObj:parentRecordNumber}#{field:colPos} } Wow, that's nice and compact! Works, thanks a lot! And how if I would like OR instead of AND? A bit of overhead in this case, so maybe there is a

[TYPO3-english] fatal error when using t3lib_utility_Debug::debug()

2013-06-07 Thread Muriel le Pair
Hi, I'm trying to migrate an old extension by rebuilding it with the extbase extension builder. But I'm lost nothing seems to work anymore like I'm just to. first line of the class: class CasesController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController But when I try to use the

Re: [TYPO3-english] fatal error when using t3lib_utility_Debug::debug()

2013-06-07 Thread Federico Bernardin
Hi Muriel, Your error is related to namespace. Use \TYPO3\CMS\Core\Utility\DebugUtility::debug(xxx). In this way PHP search the correct namespace, otherwise it search inside the current namespace (I guess 'SF\SfCases\Controller\). Cheers Federico Il giorno 07/giu/2013, alle ore 14:31, Muriel

Re: [TYPO3-english] fatal error when using t3lib_utility_Debug::debug()

2013-06-07 Thread Muriel le Pair
Op 07-06-13 14:45, Federico Bernardin schreef: Hi Muriel, Your error is related to namespace. Use \TYPO3\CMS\Core\Utility\DebugUtility::debug(xxx). In this way PHP search the correct namespace, otherwise it search inside the current namespace (I guess 'SF\SfCases\Controller\). Thanks for

Re: [TYPO3-english] Is it possible to set a default category in News System (ext:news) ?

2013-06-07 Thread Christian Richter
Hi, Sorry for being stubborn, but I had a look at: tx_news_domain_model_category tx_news_domain_model_news and tx_news_domain_model_news_category_mm and I still do not know where my category uid's are! tx_news_domain_model_news_category_mm is the right one isn't it? But I have to say, I

[TYPO3-english] extbase controller change between actions

2013-06-07 Thread Muriel le Pair
Hi, I'm strugglin with the migration of an old extension to extbase. And there is something I just don't understand about this new exbase/fluid setup. My controller contains a bunch of actions listAction(), showAction() etc. Why is the listAction() performed by default, and where do I set

Re: [TYPO3-english] Is it possible to set a default category in News System (ext:news) ?

2013-06-07 Thread Philipp Gampe
Hi Christian, Christian Richter wrote: Little tip, pointing me in the right direction? The mm table holds the relations between the two other tables. Thus is contains the uids of both (and maybe a few additional attributes). Best regards -- Philipp Gampe – PGP-Key 0AD96065 – TYPO3 UG

Re: [TYPO3-english] extbase controller change between actions

2013-06-07 Thread Christian Müller
On 07.06.13 17:09, Muriel le Pair wrote: Hi, My controller contains a bunch of actions listAction(), showAction() etc. Why is the listAction() performed by default, and where do I set this? And how do I switch from one action to another? Hi, your Plugin settings (ext_localconf) defines the