Infragistics Blogs
Get the latest trends in low-code, app development, product updates and more. Here we share our knowledge, best advice, how-tos, research, insights, and more - all with the aim of helping you learn how to build better apps faster.
The amount of data at our fingers tips today can be overwhelming. How do you know what really matters? Data visualizations can help, but how can you set up your data to best visualize it? What chart will help you analyze and digest the data into actionable insights?
Writing unit tests is a good software engineering practice. In this article, we will learn how to create a C# .NET Core application while adhering to the Test Driven Development (TDD) approach.
In this article, I'm going to explain how you can use the power of Visual Studio Code and Node.js to build a custom editing tool to overcome ornery blogging platforms and just write Markdown.
In JavaScript, you may have heard of getters and setters. Let’s take a look at what these things are.
The Infragistics private NuGet package feed is a great way to make sure you’re always using the latest packages. But you’re probably tired of having to enter in the credentials every time you try to browse, download, or update one of your packages. We’ve identified a fix using the NuGet CLI. Learn more.
If you’ve already worked with Infragistics' Xamarin.Forms/Xamarin.Android/Xamarin.iOS DataGrid (XamDataGrid) you’ll have discovered it knows some very neat tricks.
If you’ve used other development platforms, you’re probably used to using a native toolbox that lets you drag and drop controls or whatever you need to your code. Now you’ve decided to use Xamarin.Forms… and there’s no toolbox.
Cross platform development can be tricky, especially with mobile platforms involved. You could avoid it entirely by just building a separate app per platform, but that is neither cost effective, nor especially fun.
I once was in a project-scoping meeting for a client who wanted to create next generation banking products and services. Since these were new ideas, they assumed that the customers didn’t exist yet. We were considering conducting contextual inquiries, and a colleague said, “You can’t research someone who doesn’t exist yet.”
Constants are immutable variables which value cannot be changed. Once, you have created a constant, its value cannot be changed. While coding in JavaScript, you may have come across a requirement to create constants. Before ECMA Script 6, it was not very easy to create constants in JavaScript. In this post, I will show you […]