Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. netsrac

    problems with custom fields added to schema.xml

    I resolved the problem. With this code it works: SPWeb myweb = SPControl.GetContextWeb(Context); myweb.AllowUnsafeUpdates = true; SPList list = myweb.Lists["List_name"]; SPListItem item = list.Items[0]; item.["State"] = 1; item.Update(); output.Write(item["State"].ToString());
  2. netsrac

    problems with custom fields added to schema.xml

    Hi all! I added a new field to the custom list (custlist) by adding the following entry to the schema.xml: <Field Type="Integer" Name="State" DisplayName="State" Sealed="TRUE" Hidden="TRUE" ReadOnly="FALSE"/> I set hidden=true because I need this field completly hidden to the UI. But when I...

Part and Inventory Search

Back
Top