Hey all
I'm creating a custom column in a feature for Sharepoint. It is essentially this:
<Field
Type="Integer"
ID="<insert guid here>"
ReadOnly="true"
Name="xxx"
DisplayName="XXX"
Group="YYY" />
When the field is deployed and attached to a content type, the content type shows no instance of this field being attached....
I have set up MOSS 2007 Enterprise with a calendar that I have added custom columns to. We have synced this calendar in Outlook, and it works great creating and editing events from either SharePoint or Outlook.
The issue is that I want to be able to add two extra fields to the New Event form in Outlook that I have added to the SharePoi...
I have a django project with a database table that already contains data. I'd like to change the field name without losing any of the data in that column. My original plan was to simply change the model field name in a way that would not actually alter the name of the db table (using the db_column column parameter):
The original model...