我想在Demandware的输入字段中附加一个图像.
我想在Demandware的isinputfield标签上使用样式,我能在Demandware模板中使用这个样式吗?
isinputfield formfield="${pdict.CurrentForms.helloform.nickname}" type="input"非常感谢!
发布于 2016-08-08 10:51:48
isinputfield是一个定制的ISML标记,在模板中实现。
{cartridge_name}/cartridge/templates/default/util/inputfield.isml
您可以使用参数rowClass为周围的div指定CSS类(实际上可以在上面提到的模板中看到使用该参数的代码)
例如:
<isinputfield
formfield="${pdict.CurrentForms.giftcert.purchase.from}"
rowClass="label-above"
type="input" />之后,您需要为您应用的类提供CSS样式。
https://stackoverflow.com/questions/38824305
复制相似问题