0
我要追加在Demandware輸入字段中的圖像...如何在Demandware的輸入字段中使用樣式?
我想知道使用樣式上Demandware的isinputfield標籤,我可以達致這在Demandware模板像這個標籤
isinputfield formfield="${pdict.CurrentForms.helloform.nickname}" type="input"
非常感謝!
我要追加在Demandware輸入字段中的圖像...如何在Demandware的輸入字段中使用樣式?
我想知道使用樣式上Demandware的isinputfield標籤,我可以達致這在Demandware模板像這個標籤
isinputfield formfield="${pdict.CurrentForms.helloform.nickname}" type="input"
非常感謝!
isinputfield
是一個自定義ISML標籤,在模板
{} cartridge_name實施/cartridge/templates/default/util/inputfield.isml
可以使用參數rowClass
到爲周圍的div指定一個CSS類(實際上您可以在上述模板中看到使用此參數的代碼)
eg
<isinputfield
formfield="${pdict.CurrentForms.giftcert.purchase.from}"
rowClass="label-above"
type="input" />
之後,您需要爲您應用的類提供CSS樣式。