We are in the era of micro services, and soon or later, if you are involved in a full stack development, your client application would have to consume various web services in order to deliver the business requirements. With multiple services comes the complexity of handling various data formats, protocols, authentication, etc… Ideally we would…
Rx Sample Application: From Requirements to Implementation
Intro The purpose of this post is to put in practice and crystallise what we learnt in the Reactive Programming post. The deliverable of this post is a desktop application built with WPF (MVVM) and Rx. However, the concepts apply to any UI framework; web, mobile, or desktop. If you want to know more about reactive…
Infragistics XamDataGrid – Dynamic Field Group using Attached Behavior
In this post i ll show how to dynamically create grouped columns. This new feature was introduced in Infragitistcs WPF v16.1. This post is based on the previous one, so if you have not read it yet you might want to do so. The attached behaviour class is more complex in this scenario to support the hierarchical…
Infragistics XamDataGrid – Dynamic Columns using Attached Behavior
I am sharing the code of an Attached Behavior that dynamically populates the columns of an Infragistics data grid; XamDataGrid Control. This post is based on XamDataGrid–Dynamically Create and Data Bind Columns with an Editor of your Choice. So What’s New Here? The dynamic column creation implementation is packaged up in an extensible and unit testable…