Re: [TYPO3-english] Re trieve the stored data from back end module and displayed in frontend

2012-07-04 Thread Victor Livakovsky

Hi.


Please help somebody to solve my problem.
I created one back end module through extension builder. I want to 
retrieve
the data and wrap to the particular div using typo script. Is it possible 
to
access the created table data directly through typo script or need to 
create

new front end plugin for that. If I need to create front end plugin how I
need to call the function through typo script.


You may use CONTENT cObject for this purpose.
Just do something, like:
lib.my_content = CONTENT
lib.my_content {
   table = tx_mytable
   select {
   pidInList = ...
   selectFields = myfield1, myfield2
   where = ...
   }

   renderObj = COA
   renderObj.10 = TEXT
   renderObj.10.field = myfield1

   renderObj.20 = TEXT
   renderObj.20.field = myfield1
   renderObj.20.wrap = div class=my-class|/div
} 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re trieve the stored data from back end module and displayed in frontend

2012-07-03 Thread princekumar

Hello Sir,

Please help somebody to solve my problem.
I created one back end module through extension builder. I want to retrieve
the data and wrap to the particular div using typo script. Is it possible to
access the created table data directly through typo script or need to create
new front end plugin for that. If I need to create front end plugin how I
need to call the function through typo script.

Regards,
Prince.
-- 
View this message in context: 
http://old.nabble.com/Retrieve-the-stored-data-from-back-end-module-and-displayed-in-frontend-tp34089820p34089820.html
Sent from the TYPO3 English mailing list archive at Nabble.com.

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english