Forum Discussion
smithme
Feb 26, 2019Brass Contributor
How To: Add unique ID to div
I am creating my first simple web part that will modify a div. I want to find the div by giving it a unique ID. As it is possible for a user to put more than one of my web part on a single page, how ...
- Feb 26, 2019
Hi smithme
sure you can create and assign a Guid
var guid: Guid = Guid.newGuid();
importing
import { Guid } from '@microsoft/sp-client-base';
Cheers,
Federico
Hi smithme
sure you can create and assign a Guid
var guid: Guid = Guid.newGuid();
importing
import { Guid } from '@microsoft/sp-client-base';
Cheers,
Federico
smithme
Feb 26, 2019Brass Contributor
Thanks for your help.
Side note:
I didn't need the import line as the Yeoman scaffolding already included it for me (something I never noticed before) with this line of code:
import { Version, Guid } from '@microsoft/sp-core-library';