This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | |
| <!-- Parent ContentType: Item (0x01) --> | |
| <ContentType ID="0x0100118703F0484042118516B33BD9488ECB" Name="ContentType-Object Model" Group="SharePoint-Journey" Description="My Content Type" Inherits="TRUE" Version="0"> | |
| <FieldRefs> | |
| <FieldRef ID="{a4a8c94a-6a0d-4ef2-880d-a049720e2a73}" | |
| DisplayName="Team Name" | |
| Required="TRUE" | |
| Name="Team_x0020_Name" /> | |
| <FieldRef ID="{2f6753f2-1584-477a-868e-d75ead1aaa07}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Elements xmlns="http://schemas.microsoft.com/sharepoint/"> | |
| <Field | |
| ID="{779bdd44-c459-49cd-8265-3190420c7633}" | |
| Name="Team_x0020_Name" | |
| DisplayName="Team Name" | |
| Type="Text" | |
| Required="FALSE" | |
| Group="Custom Site Columns"> | |
| </Field> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var context; | |
| var web; | |
| var user; | |
| // This code runs when the DOM is ready and creates a context object which is needed to use the SharePoint object model | |
| $(document).ready(function () { | |
| context = SP.ClientContext.get_current(); | |
| web = context.get_web(); | |
| getUserName(); |
NewerOlder