0

我正在为 Alfresco 开发自定义内容模型并自定义共享界面以匹配。我正在考虑分别在模型定义和共享配置中使用约束和选择模板。

但是,我认为必须有更好的方法来实现诸如年份和年份周期之类的东西,而不是必须将它们明确地硬编码到列表中。有没有办法在这些配置文件中生成一系列数字(在这种情况下是年份和年份)?

这是我需要在约束或 selectone 模板中拥有的数据示例:

年份:1953、1954、1955 ... 2012、2013、2014。

年份:1953-1955、1957-1960、1961-1964 ... 2001-2004、2005-2008、2009-2012。

4

1 回答 1

2

Sure you can, here you can find everything about content model constraints, but more specifically you can use:

 <constraint name="test:minMax1" type="MINMAX">
     <parameter name="minValue"><value>0</value></parameter>
     <parameter name="maxValue"><value>256</value></parameter>
 </constraint>

For your sequence. In this example you would have 257 numeric entries (from 0 to 256). Hope it helps.

于 2014-10-08T23:17:28.280 回答