View SPO-Set-ListCTFieldDisplayOnNewOrEditForm.ps1
This file contains 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
# ====================================================================================================== | |
# SPO-Set-ListCTFieldDisplayOnNewOrEditForm.ps1 | |
# Use this script to update hide or show fields with SharePoint List/Library New and/or Edit forms. | |
# ------------------------------------------------------------------------------------------------------ | |
# Created By: Siôn Lewis | |
# Created Date: 21/05/2021 | |
# Modified By: Siôn Lewis | |
# Modified Date: 21/05/2021 | |
# ------------------------------------------------------------------------------------------------------ | |
# Instructions: 1. Update the variables at the top of the script before running in your environment. |
View ModernSiteSettings.ps1
This file contains 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
# ====================================================================================================== | |
# .\ModernSiteSettings.ps1 | |
# ------------------------------------------------------------------------------------------------------ | |
# Modified by: Siôn Lewis | |
# Modified Date: 10/06/2018 | |
# ------------------------------------------------------------------------------------------------------ | |
# https://docs.microsoft.com/en-us/powershell/module/sharepoint-online/set-sposite?view=sharepoint-ps | |
# https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/set-pnptenant?view=sharepoint-ps | |
# ------------------------------------------------------------------------------------------------------ | |
# Trouble shooting: _ReadMe.md |
View 02.tsconfig.json
This file contains 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
{ | |
"compilerOptions": { | |
"declaration": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"lib": [ "es2015", "dom" ], | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"noImplicitAny": true, | |
"removeComments": false, |
View HAW03.systemjs.config.js
This file contains 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
(function (global) { | |
System.config({ | |
paths: { | |
// Paths serve as alias (ASP.NET MVC: prefix / to specify the root). | |
'npm:': 'node_modules/' | |
}, | |
// Map tells the System loader where to look for things. | |
map: { | |
// Our app is within the app folder (ASP.NET MVC: prefix / to specify the root). | |
app: 'app', |
View HAW04._index.v1.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
</body> | |
</html> |
View HAW05._index.v2.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<title>My iTunes Client App Test</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="Content/site.css" rel="stylesheet" /> | |
<!-- Start Angular Setup --> | |
<!-- 1. Load libraries --> |
View HAW06.site.css
This file contains 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
body { | |
color: #CCCCCC; | |
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; | |
margin: 10px; | |
} | |
.title { | |
color: #999999; | |
font-size: 16px; | |
font-weight: bold; |
View HAW11._Layout.cshtml
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>@ViewBag.Title</title> | |
@Styles.Render("~/Content/css") | |
<!-- Start Angular Setup --> |
View HAW09.app.module.ts
This file contains 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
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { AppComponent } from './app.component'; | |
@NgModule({ | |
imports: [BrowserModule], | |
declarations: [AppComponent], | |
bootstrap: [AppComponent] | |
}) |
View HAW08.app.component.ts
This file contains 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
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'my-app', | |
template: `<h1>Hello {{name}} World</h1>`, | |
}) | |
export class AppComponent { name = 'Angular'; } |
NewerOlder