Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
142087 | Nov 12,2018 12:27 PM UTC | Jan 18,2019 10:26 AM UTC | ASP.NET Core | 18 |
![]() |
Tags: Grid |
|
|
public static List<OrdersDetails> GetAllRecords()
{
if (order.Count() == 0)
{
. . . .
{
order.Add(new OrdersDetails(code + 1, "ALFKI", i + 0, 2.3 * i, false, new DateTime(1991, 05, 15), "Berlin", "Simons bistro", "Denmark", new DateTime(1996, 7, 16), "Kirchgasse 6"));
order.Add(new OrdersDetails(code + 2, "ANATR", i + 2, 3.3 * i, true, new DateTime(1990, 04, 04), "", "Queen Cozinha", "Brazil", new DateTime(1996, 9, 11), "Avda. Azteca 123"));
order.Add(new OrdersDetails(code + 5, "BOLID", i + 4, 6.3 * i, true, new DateTime(1953, 02, 18), "", "Hanari Carnes", "Switzerland", new DateTime(1997, 12, 3), "1029 - 12th Ave. S."));
. . . . . .
} |
|
Hi Costa,Sorry for inconvenience caused.In our last patch release will be postponed due to the Essential Studio Volume 4, 2018 Beta release. However we will include the fix “Unable to filter the date column with excel filter using DataOperations class” in our upcoming Volume 4, 2018 beta release at the mid of the December.Regards,Thavasianand S.
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc().AddXmlSerializerFormatters()
.AddJsonOptions(x =>
{
x.SerializerSettings.DateParseHandling = Newtonsoft.Json.DateParseHandling.None;
x.SerializerSettings.ContractResolver = null; });
services.AddCors(options => options.AddPolicy("AllowAll", p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()));
}
|
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.