Base solution for your next web application
Open Closed

RAD Tool 1.5.6 incorrect angular binding on certain fields #5570


User avatar
0
kiandra created

Looks like when you create a field name that is an abbreviation with at least 3 letters the tool mismatches the capitalization.

For example an entity with the generated c# class

[Table("Products")]
    public class Product : FullAuditedEntity , IMayHaveTenant
    {
		public int? TenantId { get; set; }
		public virtual decimal RRPInc{ get; set; }		
    }

Will generate an angular binding

{{record.product.rRPInc}}

but the service proxy will be

rrpInc!: number | undefined;

and the mismatch causes a silent error where the value does not update.

Not a huge deal we can just rename the field or fix the error manually but it is annoying


1 Answer(s)
  • User Avatar
    0
    yekalkan created

    Thanks for reporting. It will be fixed in next release.