Posts

Showing posts from August, 2020

Why Typescript ?

  Why Typescript   Typescript is open source programming language developed and maintained by Microsoft. It is super-set of JavaScript and adds optional static typing to the language. Typescript is designed for development of large applications, which compiles to JavaScript. Can be executed on any browser.   Typescript supports OOPs features such as classes, interfaces, inheritance, generics etc.   Need of Typescript There were many challenges faced by Microsoft while handling large scale enterprise applications. So, solution was to develop a language which is rich in features and can be transpiled to JavaScript. As our browsers only understand JavaScript. It can be compiled to JavaScript. That is why Typescript is called as Superset of JavaScript.   JS is client-side scripting language. We can do DOM manipulation, client-side validation, event handling etc.   But as the complexity of the code increases, it becomes difficult to maintai...

How to embed Microsoft Power BI report to HTML page, to make it as web page ?

Image
  For this first you need to make a Power BI desktop report which you want to embed in your HTML page, we are not covering that part in this post. We have already made a sample report on Power BI, we gonna use that.   1.      Save your power BI report.   2.      After that select Publish option. 3.     From Publish option your report will be re-directed to Power Bi workspace,  4.     Report on Power BI Service workspace for this you have to login with MS work/office account. And then we can access web base Power BI service. 5.      Here, click on file and select option ‘Publish to web’ 6.      Here we’ll have embedded code to copy for HTML page, Since we don’t have power BI admin service, we aren’t able to see that part. Pop-up window with iframe code in it. But if you have admin access then you can make changes in admin portal to allow reports to publish ...