Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Microsoft Power Pages in Action

You're reading from   Microsoft Power Pages in Action Accelerate your low-code journey with functional-rich web apps using Power Pages

Arrow left icon
Product type Paperback
Published in Jun 2024
Publisher Packt
ISBN-13 9781837630455
Length 350 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Danilo Capuano Danilo Capuano
Author Profile Icon Danilo Capuano
Danilo Capuano
Faisal Hussona Faisal Hussona
Author Profile Icon Faisal Hussona
Faisal Hussona
Arrow right icon
View More author details
Toc

Table of Contents (18) Chapters Close

Preface 1. Chapter 1: Modernizing Rob the Builder’s Business with Power Pages 2. Chapter 2: Power Pages Design Studio FREE CHAPTER 3. Chapter 3: Power Pages Studio – Styling and Themes 4. Chapter 4: Dataverse Tables and Forms 5. Chapter 5: Table Permissions and Security 6. Chapter 6: Basic Forms, Lists, and Web Pages 7. Chapter 7: JavaScript and jQuery 8. Chapter 8: Web Templates and Liquid 9. Chapter 9: Workflow Automation 10. Chapter 10: Power Pages and Cloud Flows 11. Chapter 11: Charts, Dashboards, and Power BI 12. Chapter 12: REST Integration 13. Chapter 13: Creating a PDF File from Dataverse 14. Chapter 14: Modal Windows 15. Chapter 15: Enhancing Development with ChatGPT 16. Index 17. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “In a Microsoft Power Pages web template using Liquid and jQuery, I have encountered an error in the JavaScript function GetExternalData().”

A block of code is set as follows:

function fetchData() {
    fetch('https://api.example.com/data')
        .then(response => response.json())
        .then(data => {
            // Process data
            console.log(data);
        })
        .catch(error => console.error('Error:', error));
}

Any command-line input or output is written as follows:

async function fetchData() {
    try {
        const response = await fetch('https://api.example.com/data');
        const data = await response.json();
        console.log(data);
    } catch (error) {
        console.error('Error:', error);
    }
}

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Sarah selected Sections from Copilot and tried to create an HTML table within a section.”

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime