0

我正在尝试 sensenet 功能,我的重点是内容类型中的参考字段。

我成功定义并安装了以下内容类型。

<?xml version="1.0" encoding="utf-8"?>
<ContentType name="EmployeeCT" parentType="GenericContent"handler="SenseNet.ContentRepository.GenericContent" xmlns="http://schemas.sensenet.com/SenseNet/ContentRepository/ContentTypeDefinition">
<DisplayName>Employee Record</DisplayName>
<Description></Description>
<Icon>Content</Icon>
<AllowIncrementalNaming>true</AllowIncrementalNaming>
<AllowedChildTypes>EmployeeCT</AllowedChildTypes>
<Fields>
<Field name="Manager" type="Reference">
  <DisplayName>Manager</DisplayName>
  <Description></Description>
  <Configuration>
    <AllowMultiple>false</AllowMultiple>
    <AllowedTypes>
      <Type>EmployeeCT</Type>
    </AllowedTypes>
    <SelectionRoot>
      <Path>/Root</Path>
    </SelectionRoot>
    <!--<DefaultValue>/Root/Path1,/Root/Path2</DefaultValue>-->
    <ReadOnly>false</ReadOnly>
    <Compulsory>false</Compulsory>
    <VisibleBrowse>Show</VisibleBrowse>
    <VisibleEdit>Show</VisibleEdit>
    <VisibleNew>Show</VisibleNew>
  </Configuration>
</Field>
</Fields>
</ContentType>

问题是我找不到并挑选员工的经理。

请任何帮助,

谢谢。

4

1 回答 1

1

是否有任何以前保存的 EmployeeCT 类型的内容?因为您将其设置为唯一允许的类型作为 Manager 字段的值。

我已经在我的本地站点上检查了您的代码并且它有效。首先,我必须保存一个员工记录来为经理创建内容,然后我能够选择它作为新员工记录的经理。

于 2017-02-10T08:30:12.697 回答