Tag: Model-Driven Apps

There are posts in this category.

[QuickTip] How to use setVisible within TypeScript

One of my colleagues recently approached me and asked how one could use the function “setVisible” on a Dataverse control in TypeScript. The function is present in JavaScript but when trying to use it in TypeScript he got an error. Xrm type is not exposing setVisible, therefore the error...
Read More

Setting up a TypeScript project for Dataverse

In one of my recent projects, I had the need to set up a new TypeScript project. To be honest it was the first time I did this from scratch, which resulted in a few situations where I had to search for tutorials/explanations and combine all of those. That...
Read More

Filter rows between start and end dates

In this article we will learn how to filter a list of rows (f.k.a records, learn more) between start and end dates. Scenario In one of my current projects we had the need to categorize rows. Creating new categories should be dynamically and not require a deployment. To achieve...
Read More

How to call Xrm.WebApi using TypeScript

A lot of projects come to a point where it gets necessary to get information from another entity within JavaScript (JS)/TypeScript (TS) to act on those in some way. There are different ways of achieving this. Some of those are sync calls, which should not be used. In this...
Read More

Enable additional language in CDS with Azure DevOps Pipelines

In this blog post, you will learn how to enable additional languages in your CDS environment with Azure DevOps pipelines. This post can be considered the second post in a series of blog posts that talk about different approaches to solve challenges with Azure DevOps Pipelines that cannot be...
Read More