Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "joe704la"

I was wondering how to do the currency format in the Jtable in the Angular 4 version.

Unfortunately that did not work.

Does this have something to do with Entity Framework Core? This didn't happen until I upgraded to 4.0

I am using the .NET Framework 4.6.1 version not the .NET Core 1.1 version.

Ok thank you

Yes that is the line causing the issue.

I can't send the data from the database as it has sensitive data. But below is the entity.

public class Claim : IEntity<long>
    {
        [Key]
        [Column(Order = 0)]
        public long Id { get; set; }

        [Key]
        [Column(Order = 1, TypeName = "date")]
        public DateTime FileDate { get; set; }

        [StringLength(150)]
        public string EdiFileName { get; set; }

        [Column(TypeName = "date")]
        public DateTime? LoadDate { get; set; }

        [StringLength(25)]
        public string PaymentAmount { get; set; }


        [StringLength(60)]
        public string PayerID { get; set; }


        [StringLength(70)]
        public string PayerName { get; set; }


        [StringLength(60)]
        public string PayeeId { get; set; }

    }

I am very new to Angular 4. I knew how to do this in AngularJS 1x but not sure in Angular 4.

I have a list of items right now. I want when you view that list and click one of the items it shows a new view and not a model of the details. I am unsure how to do the routing for the new view to show the details of the item.

Very weird issue I am having with my Angular2 Core version. I am on 4.0.0 and in my service I have a very simple service to get a list from the database. There are only 4 items in the database with Ids of 1,2,3,4.

What I get back in the list is entity Id 1, 1 and 3, 3. So it is bringing back 4 items as it should but it is duplicating Id 1 and 3 and not giving me 2 and 4.

Below is my simple service. I haven't had this issue before version 4.0.0.

public async Task<ListResultDto<ClaimListDto>> OpenClaims()
        {
            var claim = await _claimRepository.GetAllListAsync();

            return new ListResultDto<ClaimListDto>(ObjectMapper.Map<List<ClaimListDto>>(claim));
        }

Nice find. I will try that out.

@trendline I have had a ton of issues with this and no haven't completely gotten it yet. If I figure something out I will reply here. If you figure something out, let me know.

Oh I see, thank you

Anyone else having as many issues as I am with the 4.0 upgrade? I finally got the migrations to create the tables but it never runs the seed methods

Showing 141 to 150 of 246 entries