我想在grails中編輯一個可編輯的g:select。我有一個g:選擇我的默認值,但我想可以從手中添加一些。我怎樣才能做到這一點?editable dropdown(g:select)grails
回答
<g:select name="selectName" from="${yourValue}"
optionKey="field" optionValue="field" class="form-control" noSelection="['': '']" value="${defaultValue}"/>
option鍵=「場」 - 如果你有對象的列表(圖) optionValue =「場」 - 如果你有對象的列表(發送到服務器)
從ü可以添加這樣的事情:
from="${["1","2","3"]}"
這怎麼回答題?我不認爲給出的示例允許用戶添加一個新的選項,該選項不是由'from'屬性的值指定的。 – gogognome 2015-04-03 13:12:33
小學。他的問題是:如何將我自己的價值添加到g:select?答:
我的印象是問題是如何讓ag:選擇用戶有可能添加新的值。所以你會得到一個輸入字段,用戶可以從組合框中選擇一個選項並輸入一個新的值。 – gogognome 2015-04-06 09:42:13
- 1. Grails Taglib G:SELECT
- 2. grails g:select i18n
- 3. 使用<g:select remoteFunction> grails
- 4. 我該怎麼做:grails中的required =「false」g:select?
- 5. 如何配置和檢索g:select中的值在Grails中?
- 6. x-editable:刪除「.editable-unsaved」類
- 7. 如何在第一個combobox(g:select)的基礎上填充第二個combobox(g:select)值?
- 8. 如何保護選中的g:select?
- 9. dropdown align dropdown-toggle right
- 10. jquery show dropdown from dropdown
- 11. Make UITableViewCell editable
- 12. Jquery Mockjax X-editable
- 13. MFMailComposeViewController:subject/text non editable?
- 14. radgrid cell editable
- 15. UITextfield not editable-iphone
- 16. x-editable bootstrap datetimepicker
- 17. Non-Editable NSButton-CheckBox
- 18. C#wpf datagrid editable
- 19. Non-Editable Text-Field
- 20. Android AutoCompleteTextView - Dropdown Not Showing
- 21. X-editable Datepicker + Bootstrap 3?
- 22. x-editable typeahead ajax source
- 23. jquery-datatables-editable定製
- 24. x-editable,bootstrap和symfony
- 25. Kendo Grid Non-Editable Cells
- 26. x-editable form with typehead
- 27. X-Editable&PHP MySQL表
- 28. Multiselect dropdown
- 29. BootStrap - DropDown
- 30. DropDown Aligned
看看http://stackoverflow.com/questions/740195/adding-options-to-a-select-using-jquery-javascript – saw303 2014-10-16 11:07:14