Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web part customization for SharePoint, button Onclick functionality not working in typescript #19

Open
lavanthilak opened this issue Jun 22, 2021 · 0 comments

Comments

@lavanthilak
Copy link

Web part customization for SharePoint, button Onclick functionality not working in typescript. We customized the web part by using NPM and typescript. In typescript, the onclick event is not working when we assigned the function call for that button. Can you please provide the solution for this?

public openNewPage():void  {
let site = this.context.pageContext.site.absoluteUrl;
console.log("Site: "+site);

const webPart: CreatePageWebPart = this;
window.onload= function (){
this.document.querySelector('#btnCopy').addEventListener('click', () => {
  var headtext =  document.getElementById("pageName");
  alert(headtext);
  
  });
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant