[TYPO3-german] IRRE - AJAX: Ausblenden von Seitenteilen

David Brunnthaler d.brunnthaler at aon.at
Wed Jul 9 17:30:27 CEST 2008


Hallo hallo,

ich hab hier mal eine kleine Frage für alle die sich mit IRRE und AJAX 
auskennen..

Ich hab einige Checkboxen in meine IRRE-m:n-Tabelle eingebaut. Damit die 
aber ausgeblendet werden können - so wie zB die Untertabellen "Offer" 
und "Price" - muss ich meiner Meinung nach was in meine "tca.mnasym.php" 
schreiben..

Meine Frage ist nun was muss ich reinschreiben?
Hoffe meine Frage ist halbwegs verständlich..

Gruß
David




Genauere Erklärung:
Meine Checkboxen erstelle ich mit folgendem Code in "tca.mnasym.php":
"u01" => Array (       
    "exclude" => 1,       
    "label" => 
"LLL:EXT:irre_tutorial/locallang_db.xml:tx_irretutorial_hotel.u01",       
    "config" => Array (
        "type" => "check",
    )
),

Die Preis-Unterseite wird meiner Meinung nach mit folgendem Code 
eingebunden:
"hotels" => Array (       
    "exclude" => 1,       
    "label" => 
"LLL:EXT:irre_tutorial/locallang_db.xml:tx_irretutorial_offer.hotels",    
   
    "config" => Array (
        "type" => "inline",
        "foreign_table" => "tx_irretutorial_mnasym_hotel_offer_rel",
        "foreign_field" => "offerid",
        "foreign_sortby" => "offersort",
        "foreign_label" => "hotelid",
        "maxitems" => 10,
        'appearance' => array(
            'showSynchronizationLink' => 1,
            'showAllLocalizationLink' => 1,
            'showPossibleLocalizationRecords' => 1,
            'showRemovedLocalizationRecords' => 1,       
        ),
        'behaviour' => array(
            'localizationMode' => 'select',
        ),
    )
),



More information about the TYPO3-german mailing list