Pergunta

Preciso mostrar o campo ID no Edit Form de uma lista do SharePoint.

Existe uma maneira de fazer isso?Tentei um campo calculado e nada.Eu sei que posso ver o campo ID na view, e se mostro como Modo de Acesso.Estou usando WSS3.0

Foi útil?

Solução

Você pode adicione o campo ID ao formulário usando algum JavaScript em um CEWP.

<script type="text/javascript"
   src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script>
<script type="text/javascript">

$(function() {
  // Get the ID from the query string
  var id = getQueryString()["ID"];

  // Find the form's main table
  var table = $('table.ms-formtable');

  // Add a row with the ID in
  table.prepend("<tr><td class='ms-formlabel'><h3 class='ms-standardheader'>ID</h3></td>" +
                "<td class='ms-formbody'>" + id + "&nbsp;</td></tr>");
})

function getQueryString() {
  var assoc = new Array();
  var queryString = unescape(location.search.substring(1));
  var keyValues = queryString.split('&');
  for (var i in keyValues) {
    var key = keyValues[i].split('=');
    assoc[key[0]] = key[1];
    }
  return assoc;
}
</script>

Existe uma alternativa método que não usa a biblioteca jQuery se você preferir manter as coisas leves.

Outras dicas

Você pode fazer isso criando um formulário de edição personalizado com bastante facilidade.Normalmente coloco-o em uma tabela HTML renderizada em uma webpart.Pode haver uma maneira melhor de fazer isso, mas é simples e funciona.

A linha principal que você deseja observar é spFormField.ControlMode.Isso informa ao SharePoint como exibir o controle (Inválido, Exibir, Editar, Novo).Então o que você vai querer fazer é verificar se seu spField.InternalName == "ID" e se for, definir ControlMode como Display.

O resto é apenas superficial para renderizar o resto da lista.

Espero que isto ajude.

HtmlTable hTable = new HtmlTable();
HtmlTableRow hRow = new HtmlTableRow();
HtmlTableCell hCellLabel = new HtmlTableCell();
HtmlTableCell hCellControl = new HtmlTableCell();
SPWeb spWeb = SPContext.Current.Web;

// Get the list we are going to work with
SPList spList = spWeb.Lists["MyList"];

// Loop through the fields
foreach (SPField spField in spList.Fields)
{
   // See if this field is not hidden or hide/show based on your own criteria
   if (!spField.Hidden && !spField.ReadOnlyField && spField.Type != SPFieldType.Attachments && spField.StaticName != "ContentType")
   {
     // Create the label field
     FieldLabel spLabelField = new FieldLabel();
     spLabelField.ControlMode = _view; 
     spLabelField.ListId = spList.ID;
     spLabelField.FieldName = spField.StaticName;

     // Create the form field
     FormField spFormField = new FormField();

// Begin: this is your solution here.
     if (spField.InteralName == "ID")
     { spFormField.ControlMode = SPControlMode.Display; }
     else
     { spFormField.ControlMode = _view; }
// End: the end of your solution.

     spFormField.ListId = spList.ID;
     spFormField.FieldName = spField.InternalName;

     // Add the table row
     hRow = new HtmlTableRow();
     hTable.Rows.Add(hRow);

     // Add the cells
     hCellLabel = new HtmlTableCell();
     hRow.Cells.Add(hCellLabel);
     hCellControl = new HtmlTableCell();
     hRow.Cells.Add(hCellControl);

     // Add the control to the table cells
     hCellLabel.Controls.Add(spLabelField);
     hCellControl.Controls.Add(spFormField);

     // Set the css class of the cell for the SharePoint styles
     hCellLabel.Attributes["class"] = "ms-formlabel";
     hCellControl.Attributes["class"] = "ms-formbody";
   }

}

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top