コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
6524 ビュー

hey,

I would like add a dropdown in my contact form on my web site. but i d'ont know how I should do. 

And how must i do for the dropdown have an impact on my backoffice. for exemple: if i add a dropdown with type of questions. It's could be great if the types of questions sont rangé par type. 

Thanks to help me :) 

アバター
破棄
最善の回答

You can create a new dropdownlist with your own values like that:

 

VIEW:

 <option value="">Select country...</option>
       <t t-foreach="countries or []" t-as="country">
       <option t-att-value="country.id" t-att-selected="country.id == account.country_id.id"><t t-esc="country.name"/></option>                          
       </t>

 

CONTROLLER:

 

countries = http.request.env['res.country']

values = {
                'countries': countries.search([]),
         }
         return http.request.render('eq_website_customerportal.accountDetail', values)

 

アバター
破棄
関連投稿 返信 ビュー 活動
1
11月 17
4475
1
8月 17
5515
0
3月 15
3429
2
7月 25
879
1
9月 24
1475