Posts

Showing posts from August, 2023

How to include {Custom Pages of Model Driven App} within the solution

Image
 Hello All. Welcome to Anything & Everything in Tech blog. Today's post is about adding custom pages to the solution. Custom Pages are similar to canvas apps but they can be included within the Model Driven Apps as a page. To move the custom page across solutions there is a easy way using solutions. I have a custom page called " Product Inventory " where I am displaying it in my model driven app as shown below Now everything is in place I just need move this page across environments to make it available. To do that lets add the solution. I created a solution and use Add Existing ->App->Page Select page and include you custom page as shown below. In this way you can include custom pages within the solution. Hope this post helped you. Please do follow and subscribe for more insights

Unable to see Power Automate flow for a selected item of SharePoint List

Image
Hello All!!!. Welcome to Anything & Everything in Tech blog :) Hope all is well. Today's post is very simple but tricky to find why power automate flows are not showing up for SharePoint Lists. I created a flow named " Acknowledgement Flow " on SharePoint List " Acknowledgements ". Everything is simple and straight forward but now the actual problem comes up where I am unable to see my flow. Screenshot of the flow is below. I verified everything like the SharePoint site, SharePoint list and the final one the trigger of the flow which is nothing but " For a selected item " trigger surprisingly all required checks are passed. But still I am unable to invoke my flow from the list item. After so much of investigating I am able to figure out the issue which is very minor. The reason why I am unable to see my flow is due to the Environment . For a flow that needs to be available on any list item have to be created in Default Environment . I re-created ...

How to use Google fonts in your Web Page

Image
Welcome to Anything and Everything in Tech blog! Today's tip is how to use google fonts in your web applications. CSS has inbuilt support for a wide variety of fonts. However, Google fonts are not recognized by CSS. Let's look at the sample HTML. This is a sample text that should be displayed in Noto Sans It uses Noto Sans as font. When I browse the HTML file, the font does not take effect. To refer to Google fonts, we need to refer to Google stylesheet. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=<google-font-family>" /> In our case, the URL should be referring to Noto Sans format. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans" /> Hope this helped! Please subscribe to our blog for more interesting posts on tech.

How to display AM/PM for a Date field in Canvas Apps

Image
Hello All !!!!.  Welcome to our  Anything & Everything  in tech blog 😊😊.  The topic for today is on Microsoft Power Apps and in this post I will show show AM/PM for your date fields. Canvas apps are the leading low code framework for mobile apps and custom user interfaces. One of the powerful feature being able to bring in data from multiple data sources using just connectors. They are just termed as One Click Data from Multiple Platforms Let me jump in to the topic. I have a requirement to display display a date with AM/PM.  Unfortunately, Canvas apps function reference does not have any function to do this. However you can use the ubiquitous Text function to do it. $"{Text(Today(), "dd/mm/yyyy, hh:mm am/pm ")}" Within the Text() you can pass your date field and specify the desired format. Observe the part highlighted in bold - am/pm . I have seen implementations where makers end up using switch case on the hour field to determine AM/PM time. In the belo...