如何检查日期小部件是否为空?

时间:2011-05-13 20:48:02

标签: validation date widget plone

我试图检查日期小部件是否为空。如果它是空的,它不应该出现。

<div class="field" 
    tal:define="value widget/value;
                valueexists python:value not in (None, '',);
                label widget/label"
    tal:condition="python:widget.__name__ not in ('IBasic.title', 'IBasic.description', 'title', 'description',) and valueexists">

问题是以下表达式似乎无法检查日期:

python:value not in (None, '',)

2 个答案:

答案 0 :(得分:0)

为什么不能这样:

<div class="field" 
tal:define="value       widget/value;
            label       widget/label"
tal:condition="python:widget.__name__ not in ('IBasic.title', 'IBasic.description', 
  'title', 'description',) and value">
...
</div>

测试小部件/值的特定值似乎注定会造成麻烦。

答案 1 :(得分:0)

我不确定我是否正确理解了您的问题,但我还是建议jQuery作为一种检查和有条理地隐藏(删除)小部件的方法,如果这是出于审美原因。