Настраиваемое поле SharePoint BCS Edit и NewForm

Сценарий: у меня есть источник данных, поступающих через BCS, и он представлен так, как будто он всегда представлен с помощью BCS. Я хотел бы сделать, это настроить New и EditForms, чтобы позволить DropDown в одном из моих полей.

Я пытался: Создание настраиваемого поля на основе SPFieldChoide (проверено в пользовательском списке и работает нормально) и через XML-файл конфигурации BCS (.bdcm) добавило свойство SPCustomFieldType в поле, которое я хочу настроить.

Ошибка: я могу открыть страницы ReadItem/NewForm/EditForm, и настраиваемое поле визуализируется очень хорошо, но при открытии страницы ReadList выдает ошибку

Ошибка при выполнении веб-части: System.NotSupportedException: метод "GetFieldAttributeValue" не поддерживается в BiConvenioGrupoChoiceField для внешних списков.
в Microsoft.SharePoint.SPExternalList.ThrowNotSupportedExceptionForMethod(String sMethodName, Type typeThrowing)
в Microsoft.SharePoint.SPFieldChoice.get_Sortable()
в Microsoft.SharePoint.SPField.AnnotateField(XmlNode fieldRefNode)
в Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.AddInFieldSchema(XmlNodeList fieldRefNodes, список SPList)
в Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.AddInTypeInfoIntoViewXml(XmlNode viewXml)
в Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.ModifyXsltArgumentList(ArgumentClassWrapper argList)
в Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean bDeferExecuteTransform)

Давайте пройдемся по коду.

Пользовательское поле.cs

class BiConvenioGrupoChoiceField : SPFieldChoice
{
    #region Constructors
    public BiConvenioGrupoChoiceField(SPFieldCollection fields, string fieldName) : base(fields, fieldName) { }
    public BiConvenioGrupoChoiceField(SPFieldCollection fields, string typeName, string displayName) : base(fields, typeName, displayName) { }
    #endregion

    #region Properties
    public override string TypeDisplayName
    {
        get
        {
            return "BiConvenioGrupoChoiceField";
        }
    }        
    public override BaseFieldControl FieldRenderingControl
    {
        get
        {   
            BaseFieldControl fieldControl = new BiConvenioGrupoChoiceFieldControl();
            fieldControl.FieldName = InternalName;
            return fieldControl;
        }
    }
    #endregion
}

Пользовательское поле Control

class BiConvenioGrupoChoiceFieldControl : BaseFieldControl
{
    DropDownList customDropDown;
    protected override string DefaultTemplateName
    {
        get
        {
            return "DropDownRenderingTemplate";
        }
    }
    protected override void CreateChildControls()
    {
        try
        {
            base.CreateChildControls();
            customDropDown = (DropDownList)TemplateContainer.FindControl("customDropDown");
            if (customDropDown != null)
            {
                customDropDown.ID = this.FieldName;
                if (this.ControlMode == SPControlMode.New || this.ControlMode == SPControlMode.Edit)
                {                        
                        customDropDown.Items.Add(new ListItem("Option 0", "0"));
                        customDropDown.Items.Add(new ListItem("Option 1", "1"));
                        customDropDown.Items.Add(new ListItem("Option 2", "2"));
                        customDropDown.Items.Add(new ListItem("Option 9", "9"));
                }
            }
        }
        catch (Exception ex)
        {
            SystemLogger.Logger.Log(ex, LoggingLevel.Fatal);
        }
    }

    public override object Value
    {
        get
        {
            EnsureChildControls();
            return customDropDown.SelectedValue;
        }
        set
        {
            this.EnsureChildControls();
            customDropDown.SelectedValue = (string)ItemFieldValue;
        }
    }
}

BCS.bdcm

<Method Name="Create">
              <Parameters>
                <Parameter Name="returnCCCadastrados" Direction="Return">
                  <TypeDescriptor Name="ReturnCCCadastrados" TypeName="Models.ConvenioBI, CCCadastradosBDC">
                    <TypeDescriptors>
                      <TypeDescriptor Name="Dbico_sq" DefaultDisplayName="Id" IdentifierName="Dbico_sq" TypeName="System.Int32" />
                      <TypeDescriptor Name="Descricao" DefaultDisplayName="Descrição" TypeName="System.String" />
                      <TypeDescriptor Name="CodigoCorporativo" DefaultDisplayName="Código Corporativo" TypeName="System.String" />
                      <TypeDescriptor Name="Login" DefaultDisplayName="Criado Por" TypeName="System.String" />
                      <TypeDescriptor Name="Grupo" DefaultDisplayName="Grupo" TypeName="System.String">
                        <Properties>
                          <Property Name="SPCustomFieldType" Type="System.String">BiConvenioGrupoChoiceField</Property>
                        </Properties>
                      </TypeDescriptor>
                      <TypeDescriptor Name="DtCriacao" DefaultDisplayName="Data Criação" IsCollection="false" TypeName="System.DateTime">
                        <Interpretation>
                          <NormalizeDateTime LobDateTimeMode="UTC" />
                        </Interpretation>
                      </TypeDescriptor>
                      <TypeDescriptor Name="DtAtualizacao" DefaultDisplayName="Data Atualização" IsCollection="false" TypeName="System.DateTime" >
                        <Interpretation>
                          <NormalizeDateTime LobDateTimeMode="UTC" />
                        </Interpretation>
                      </TypeDescriptor>
                    </TypeDescriptors></TypeDescriptor></Parameter>
                <Parameter Name="newCCCadastrados" Direction="In">
                  <TypeDescriptor Name="NewCCCadastrados" TypeName="Models.ConvenioBI, CCCadastradosBDC">
                    <TypeDescriptors>                      
                      <TypeDescriptor Name="Descricao" DefaultDisplayName="Descrição" TypeName="System.String" CreatorField="true" />
                      <TypeDescriptor Name="CodigoCorporativo" DefaultDisplayName="Código Corporativo" TypeName="System.String" CreatorField="true" />
                      <TypeDescriptor TypeName="System.String" Name="Grupo" DefaultDisplayName="Grupo" CreatorField="true" >
                        <Properties>
                          <Property Name="SPCustomFieldType" Type="System.String">BiConvenioGrupoChoiceField</Property>
                        </Properties>
                      </TypeDescriptor>
                    </TypeDescriptors>
                  </TypeDescriptor>
              </Parameter>
              </Parameters>
              <MethodInstances>
                <MethodInstance Name="Create" Type="Creator" ReturnParameterName="returnCCCadastrados" ReturnTypeDescriptorPath="ReturnCCCadastrados" />
              </MethodInstances>
            </Method>

1 ответ

Я просто переопределить свойство Sortable в моем классе настраиваемого поля.

public override bool Sortable
{
    get
    {
        return false;
    }
}

Работает как шарм.

Другие вопросы по тегам