From leo at sprinkesnirg.de Sat May 2 12:31:56 2009 From: leo at sprinkesnirg.de (Leopold Mayr) Date: Sat, 2 May 2009 12:31:56 +0200 Subject: [TYPO3-project-formidable] Renderlet:CHECKSINGLE or CHECKBOX in LISTER In-Reply-To: References: Message-ID: Hi, this works with the formidable-Version in the TER (svn-rev 185), with 2.0.345.SVN it does not, due to a different array setup. regards Leo Am 29.04.2009 um 00:00 schrieb Dietmar Staab: > Hi Pawel, > > what's the exact problem? To place the checkbox in the list or the > button for > sending the emails? > > With this example http://formidable.typo3.ug/pastebin/snippet/ > 37.html the > placement of the checkboxes should be no problem. > > use something like > type="renderlet:CHECKBOX" activelistable="true" /> > > The eval which has been checked you may solve with an ajax call, > where you > test which checkbox is set and do with the emails whatever you want. > > HTH, regards > Dietmar > > At Tuesday, 28. April 2009 Pawe? Bandura wrote: >> Hi again >> >> I want to display the list of companies with e-mail adres as a column >> and I want to place a checbox in each row. I want to check some >> checkboxes and press 'Send e-mail' button and I'd like to get the e- >> mail >> adressed to every checked company. >> >> And i've no idea how to do this :] >> Could someone give me a hand? >> >> Regards >> Pawe? Bandura >> _______________________________________________ >> TYPO3-project-formidable mailing list >> TYPO3-project-formidable at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-formidab >> le > > > _______________________________________________ > TYPO3-project-formidable mailing list > TYPO3-project-formidable at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-formidable From newgrp at googlemail.com Sun May 3 09:24:44 2009 From: newgrp at googlemail.com (Hauke Hain) Date: Sun, 3 May 2009 09:24:44 +0200 Subject: [TYPO3-project-formidable] rdt lister: Use HTML-Code instead of asc/desc image via CSS class Message-ID: Hi there, I do not like the picture for ascending or descending lists delivered with because it is unnecessary. Intstead I use Unicode Geometric Shapes, so you put only a HTML-Code instead of an image. It is handy for most users. To have this included do the following in the \api\base\rdt_lister\api\class.tx_rdtlister.php: add after line 775: $sortSymbol = ""; add after line 783: $sortSymbol = "▼"; add after line 790: $sortSymbol = "▲"; replace line 805 ( $sTag = "" . $sSortHtml . $sLabelDir . ""; ) with: $sTag = "" . $sSortHtml . $sLabelDir . $sortSymbol . ""; I think this should be implemented in formidable. But because this would change the design I recommend a new configuration: So add before line 805: if(($this->_navConf("/template/useunicodegeometricshapes")) == FALSE) $sortSymbol = ""; Now, if you want to use the Unicode Geometric Shapes instead of the image just set your lister-xml: