Lukiluko Posted October 10, 2012 Report Share Posted October 10, 2012 Hallo zusammen! Ich habe mal eine Frage die bestimmt leicht beantwortet werden kann ;-) Also: Ich habe eine Auswahlliste per smarty assign erstellt und die dazugehörige .tpl Datei. Möchte diese in den Produktinformationen einbinden. Wie kann ich die tpl Datei positionieren (im produktinfo Content) ? Wenn ich die tpl Datei per include in die product.html einbinde dann werden die Werte der selectbox nicht angezeigt! Warum? auszug product.php include_once('meinpfad/xtFramework/library/smarty/Smarty.class.php'); $smarty = new Smarty; $smarty->assign("titel", "Smarty-Test"); $smarty->assign('cust_ids', array(1000,1001,1002,1003)); $smarty->assign('cust_names', array( 'blabla.', 'blabla', 'blabla', 'blabla')); $smarty->assign('customer_id', 1000); $smarty->display('meinpfad/test.tpl'); test.tpl <select name="customer_id"> {html_options values=$cust_ids output=$cust_names selected=$customer_id} </select> So wird die Auswahlliste in der Produktinfo oben links angezeigt und befüllt. Include ich die test.tpl in der product.html wird die box leer angezeigt ohne Inhalt. Würde mich über Eure Hilfe freuen! Danke! Link to comment Share on other sites More sharing options...
giller Posted October 10, 2012 Report Share Posted October 10, 2012 Das was Du vor hast ist zwar sehr schön aber warum machst du das nicht einfach mit einer Box. Das geht doch einfacher. Link to comment Share on other sites More sharing options...
Lukiluko Posted October 10, 2012 Author Report Share Posted October 10, 2012 Hallo, wie meinst du das mit der Box? Gruß Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.