使用主题为xe:navigator设置expandLevel

时间:2012-04-10 09:22:53

标签: xpages xpages-extlib

我想使用主题为几个扩展libary导航器设置expandLevel属性。我可以设置expandable和expandEffect,但我无法使expandLevel工作。我在我的主题中使用以下内容:

 <!-- Navigator -->
 <control>
    <name>Outline.Navigator</name>
    <property type="boolean">
        <name>expandable</name>
        <value>true</value> 
    </property>
    <property>
        <name>expandEffect</name>
        <value>wipe</value> 
    </property>
    <property>
        <name>expandLevel</name>
        <value>#{0}</value> 
    </property>
</control>

我也尝试使用<value>0</value>,但也无效。

1 个答案:

答案 0 :(得分:1)

布尔人需要像EL那样传递,就像数字一样。将可扩展属性的值传递为#{true},否则将尝试分配String值。