0
我使用autoform來問一個是的,沒問題,我想有兩個按鈕,一個說是,另一個說不。通過使用aldeed:autoform-bs-button-group-input
,我可以在我的模式中使用下面的代碼生成兩個按鈕,但這並不能單獨設置每個按鈕的樣式。例如,我希望一個是綠色的,一個是紅色的。我怎樣才能做到這一點?是/否按鈕
路徑:Schema.js
answer: {
type: String,
optional: true,
allowedValues: ['Yes', 'No'],
autoform: {
type: "select-radio",
options: function() {
return [
{label: "Yes", value: 'Yes'},
{label: "No", value: 'No'},
];
}
}
}
路徑:template.js
{{#autoForm collection="questions" id=makeUniqueID doc=this type="update" autosave=true}}
{{> afQuickField name="answer" type="select-radio" template="buttonGroup" label=false}}
{{/autoForm}}
由於@jeremyk。 CSS版本不起作用,但使用JavaScript的第一個選項完美無缺。非常感謝! – bp123