The Shapes of CSS

 Source Link:   https://css-tricks.com/the-shapes-of-css/


CSS is capable of making all sorts of shapes. Squares and rectangles are easy, as they are the natural shapes of the web. Add a width and height and you have the exact size rectangle you need. Add border-radius and you can round that shape, and enough of it you can turn those rectangles into circles and ovals.

How to Create a Custom Address Lookup in Microsoft Dynamics 365

 In Microsoft Dynamics 365, creating a tailored user experience often requires customizing the way records are selected and handled. One common requirement is to allow users to select an address record from a filtered list, specific to an account and certain other criteria. This article will demonstrate how to create a custom lookup for the CustomerAddress entity using JavaScript and the Xrm.Utility API.

Creating Custom Lookup Dialogs in Microsoft Dynamics 365

 Customizing user interactions in Microsoft Dynamics 365 often involves more than just data entry; it requires tailored solutions for record selection based on specific criteria. This article demonstrates how to create a custom lookup dialog that can be adapted for any entity, enabling users to select records filtered by custom conditions using JavaScript and the Xrm.Utility API

Automating Dynamics 365 Report Generation Using JavaScript

 When working with Microsoft Dynamics 365, you may find yourself needing to automate the generation of reports based on specific criteria or in response to certain actions. This can greatly enhance user experience and efficiency by reducing the number of manual steps required to view important data. This article outlines how to create and use a JavaScript function that dynamically retrieves the GUID of a specific report by its name and then generates that report for a given record ID.

How to Retrieve a Dynamics 365 Report GUID Using the Web API

 In Microsoft Dynamics 365, reports play a crucial role in visualizing and summarizing business data. Sometimes, you may need to programmatically access these reports, for instance, to integrate report links into custom user interfaces or automated workflows. This article guides you through the process of retrieving a report GUID (Globally Unique Identifier) using the Dynamics 365 Web API, which is essential for any automation or integration task involving reports.

Popup Window to Collect Input using prompt() function

 Syntax

The basic syntax of the prompt() function is as follows:

How to Customize Managed Views in Dynamics 365 That Do Not Support Direct Customization

 In Dynamics 365, managed solutions often lock certain components, including views, which restricts direct customization. However, if you need to modify these views to meet specific business requirements, there is a workaround using XRMToolBox, a powerful third-party tool. This article will guide you through the process of duplicating and customizing a managed view that does not support direct customization.

Setting Columns to Read-Only in an Editable Subgrid in Dynamics 365

  Editable subgrids in Dynamics 365 provide a dynamic way to display and interact with related data directly on a parent form. There are situations, however, where it's necessary to restrict editing of certain fields within these subgrids to maintain data integrity or adhere to business rules. This article explains how to make specific columns in an editable subgrid read-only using JavaScript, employing addOnRecordSelect event depending on the requirement.

Comprehensive Guide to Power BI Workspace License Modes and User Access

Introduction

Microsoft's Power BI platform offers a range of features to meet the needs of diverse business analytics use cases. However, understanding the licensing requirements is crucial to accessing, sharing, and collaborating on reports and data effectively.

Correctly Formatting CSV Files in Power Automate

 Creating well-organized CSV files in Power Automate requires a clear understanding of how text and values are formatted and placed directly in the value field. This guide demonstrates how to correctly structure data in a CSV without using special characters like \n, \r, or quotation marks.

Mastering Data Filtering (Filter Rows) in Power Automate: Practical Examples for Dynamics 365

Effective data filtering is key to optimizing workflows in Power Automate when working with Dynamics 365. This guide provides examples of common filtering techniques to help you manage data efficiently.

How to Include Related Entity Columns in Dynamics 365 Views

In Dynamics 365, displaying data from related entities in views can greatly enhance user experience by providing comprehensive insights at a glance. However, administrators may sometimes face issues where columns from a related entity, such as a parent entity, do not appear in the dropdown list for adding to a view. This article explores a solution to this common challenge.