Вопрос

When I try to get the id from:

string idValue = item[Lookup].ToString();

I get the next value by example:

1;#1

I need the value this way:

1

Actually this code handle the requirement:

using (SPSite site = new SPSite(context.CurrentWebUrl))
{
    using (SPWeb web = site.OpenWeb())
    {
        //Context list                 
        SPList list = web.Lists[context.ListId];
        SPList child = web.Lists[List]; 
        SPListItem currentItem = list.GetItemById(context.ItemId);
        string updateItems = "";
        int ID = currentItem.ID;

        foreach (SPListItem item in child.Items)
        {
            string idValue = item[Lookup].ToString();
            int partial = idValue.LastIndexOf(";");
            string idPure = idValue.Substring(0, partial);

            if (idPure == ID.ToString())
            {
                item[Field] = Value;
                item.Update();
                updateItems += item.ID.ToString();
            }
        }              

        //Return Items*/
        results["Items"] = updateItems;
        SPWorkflow.CreateHistoryEvent(web, context.WorkflowInstanceId, 0,
            web.CurrentUser, TimeSpan.Zero, "Information",
            "Event from sandboxed, updates: " + updateItems, string.Empty);
    }
}

I want to know a better function or property to get the ID from lookup field.

Это было полезно?

Решение

SPFieldLookupValue fieldLookupValue = new SPFieldLookupValue(item["FieldName"].ToString());
int lookupID = fieldLookupValue.LookupId;

Here you go :)

Другие советы

    SPList mySPList = oWeb.Lists["ProjectList"];
newItem["LookupFieldName"] = new SPFieldLookupValue(getLookUp(mySPList,LookupFieldValue), LookupFieldValue);



public static int getLookUp(SPList oList, string FieldValue, string sFieldName="Title")
        {

            foreach (SPListItem spi in oList.GetItems())
            {
                if (spi[sFieldName].ToString() == FieldValue)
                {
                    return spi.ID;
                }
            }
            return 0;
        }

i can set lookup field in SharePoint by use this code

<script>

window.onload = (event) => {
document.getElementById("tafahomNameId_78ec7c44-beab-40de-9326-095f474519f4_$LookupField").value = 1;
};

</script>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top