xforms关注日期选择器

时间:2012-04-16 17:47:54

标签: xforms mindate

有人可以告诉我在datetime字段中为日期选择器添加最小日期/时间的正确语法。 这工作

<fr:date mindate="2012-05-05" ref="mydate">

这不是

<fr:date mindate="current-date()" ref="mydate">

谢谢

1 个答案:

答案 0 :(得分:2)

如果值为静态,则只能在fr:date组件中使用mindatemaxdate的属性。如果值由XPath表达式确定,则需要使用具有ref属性的嵌套元素。所以以下应该可以解决问题:

<fr:date ref="mydate">
    <fr:mindate ref="current-date()"/>
</fr:date>