[PHP-EXT] Alignement de combo horizontal

Alignement de combo horizontal [PHP-EXT] - PHP - Programmation

Marsh Posté le 25-05-2009 à 11:30:20    

Bonjour à tous, je ne parviens pas à aligner 2 combos l'un à côté de l'autre :(.
Je pense ne pas avoir bien compris le principe des Form pannels.
Voici mon code actuel:
 

Code :
  1. $store_ent = new PhpExt_Data_JsonStore();
  2.             $store_ent  ->addField(new PhpExt_Data_FieldConfigObject("nom","nom" ));
  3.             $store_ent  ->addField(new PhpExt_Data_FieldConfigObject("site","site" ));
  4.             $store_ent  ->setUrl('http://'.$host.'/fonctions.php?action=getSites');
  5.             $site = new PhpExt_Form_ComboBox(null, "site" );
  6.             $site   ->setStore($store_ent)
  7.                     ->setDisplayField("site" )
  8.                     ->setTypeAhead(true)
  9.                     ->setMode(PhpExt_Form_ComboBox::MODE_LOCAL)
  10.                     ->setTriggerAction(PhpExt_Form_ComboBox::TRIGGER_ACTION_ALL)
  11.                     ->setEmptyText("Selectionnez un site..." )
  12.                     ->setSelectOnFocus(true)
  13.                     ->setApplyTo("site" );
  14.             $entreprise = new PhpExt_Form_ComboBox(null, "entreprise" );
  15.             $entreprise   ->setStore($store_ent)
  16.                           ->setDisplayField("nom" )
  17.                           ->setTypeAhead(true)
  18.                           ->setMode(PhpExt_Form_ComboBox::MODE_LOCAL)
  19.                           ->setTriggerAction(PhpExt_Form_ComboBox::TRIGGER_ACTION_ALL)
  20.                           ->setEmptyText("Selectionnez une entreprise..." )
  21.                           ->setSelectOnFocus(true)
  22.                           ->setApplyTo("entreprise" );
  23.             $form_recherche = new PhpExt_Form_FormPanel();
  24.             $form_recherche ->setBaseCssClass("x-plain" )
  25.                             ->setLayout(new PhpExt_Layout_ColumnLayout())
  26.                             ->setLabelWidth(55)
  27.                             ->setUrl("index.php" )
  28.                             ->setDefaultType("textfield" )
  29.                             ->setBodyStyle("padding:5px 5px 0" )
  30.                             ->setWidth(350)
  31.                             ->setDefaults(new PhpExt_Config_ConfigObject(array("width"=>230)));
  32.                            
  33.            
  34.             $form_recherche->addItem($entreprise);
  35.             $form_recherche->addItem($site);
  36.             $form_recherche->addButton(PhpExt_Button::createTextButton("Chercher" ));
  37.             $smarty->assign('onReady',"
  38.                             <script>"
  39.                                 .PhpExt_Ext::onReady(
  40.                                     $store_ent->getJavascript(false, "store_ent" ),
  41.                                     $store_ent->load(),
  42.                                     $form_recherche->getJavascript(false, "recherche" ),
  43.                                     $form_recherche->render('recherche')
  44.                                 )."
  45.                             </script>" );


 
Et voici le code HTML sur lequel j'applique:
 

Code :
  1. <div id="recherche">
  2.         Rechercher mes contacts:
  3. <input type='text' id='entreprise'><input type='text' id='site'>
  4. </div> <!--recherche-->


 
Si quelqu'un peut m'aider.
Merci d'avance !

Reply

Marsh Posté le 25-05-2009 à 11:30:20   

Reply

Marsh Posté le 25-05-2009 à 15:18:55    

Vraiment personne pour m'aider ?

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed