2013-04-17 80 views
2

我想禁用下拉列表中給定的默認選項。 例如有在下拉列表中的三個值如何在下拉列表中禁用默認選項

["Select a status", "Processing", "Completed"] 

我想申請「選擇狀態爲」禁用並選擇屬性。

你能告訴我該怎麼做嗎?我無法同時使用兩個屬性值。

回答

2

您是否嘗試過使用options_for_select

<%= select_tag(:city_id, options_for_select(["Free", "Basic", "Advanced", "Super Platinum"], :disabled => "Super Platinum", :selected => "Super Platinum")) %> 
+0

是的,我試過,但它不會使「超白金」默認選項。 – Deepika

+0

我更新了代碼,以顯示如何設置默認選項 – dbslone

+0

+1你打我吧 – Salil

1

以下工作對我來說

<%= select("post", "person_id", options_for_select(["Free", "Basic", "Advanced", "Super Platinum"], :disabled => "Super Platinum", :selected => "Super Platinum")) %> 
相關問題