• .Net Core

    .Net Core MVC Bootstrap Modal Using With Jquery

    Hello guys, In this article, I will be talking about using bootstrap modal. I will answer the question of how I can use the bootstrap model with jquery. 1- I created .net mvc core with default template project. 2- I created FakeDataModel; namespace ModalWithJquery.Models { public class FakeDataModel { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string FullName { get; set; } } } 3- I added CreateModal(GET and POST) method to HomeController using Microsoft.AspNetCore.Mvc; using ModalWithJquery.Models; using System.Diagnostics; namespace ModalWithJquery.Controllers { public class HomeController…

  • Dynamics Ax/365

    How to use Model Class in Dynamics Ax/365

    Hello guys, As you know Dynamics Ax AIF services it has a complicated structure. Sometimes we just want to export specific data. For example, instead of fully opening CustTable, we may only want to open the fields AccountNum and AccountName. Another reason is that if you directly open the CustTable, it will respond to you as complex XML. However, if you open it as a model, you can get the output as JSON. In such cases, we need to create a model class. Below, I explain how to create and use this model class. Let’s start. 1- Create new class:…