Ben PHP Zend Framework kullanıyorum.
Nasıl tarafından gönderilen denetleyicisi değerleri alabilirsiniz:
$infoForm=array(
// I get these values from a DB
'idCity' => $idCity ,
'idRestaurant'=>$idRestaurant
);
$ Form-> populate ($ InfoForm);
i Dojo_Form de bilgi almak
$ Şehir = new Zend_Dojo_Form_Element_FilteringSelect ('idCity');
ama idCity I DB gidiyor ve o City'de restoranlar görmek için FilteringSelect ('idRestaurant') güncellemek ediyorum
How can I see the value of the variables sent by $ Form-> populate ($ InfoForm); in the form?
Ben formda $ this-> GetValue ('idCity') denedim, ama bu denetleyicisi döndüğünde değerini almak gibi görünüyor. Ben değer idCity kontrol edin ve sonra FilteringSelect ('idRestaurant') oluşturmak istiyorum.
:: Iyi açıklanması
I've got: I've got: Controller (extends Zend_Controller_Action)
Model (Zend_Db_Table_Abstract) - veritabanına erişmek için> fonksiyonlar
Formu (Zend_Dojo_Form uzatır) -> oluşturduğunuz :: Burada değerleri görmek istiyorum!
Görünüm (Ben formu görüntülemek nerede)
I get the values from the database in the controller, then I send them to Form with $ Form-> populate ($ InfoForm); I woul like to see the values that came from the controller to generate the form accordingly