1) Set Mandatory field "red *" and "required" (Eg:- <inputtype="text"id="username"name="username"required>; <spanstyle="color:red;">*</span>)
2) Blue* Title/Tooltip Must
3) Account Code and other Codes are allowed only CAPITAL LETTERS
4) Some Components must be grouped Please refere the mentioned ui (items eg: Posting status,Privilage to,document no,Supplier)
5) Be careful with the Component id or name when copying it from other UI, Id or name must be unique and related to the corresponding UI and it must be readable
6) maxlength Must in string field(HTML inputs) based on ...\Models\corporate\corporateModels.cs->MdlCorporateCustomDataConf
7) Set and Check Language translate
8) Two way binding based on mdlCorporateCustomDataConf
9.0) In Input REMOVE "text-transform: uppercase" and Set (ngModelChange)="mdl*.* = $event.trim().toUpperCase()" Eg:- <input...(ngModelChange)="mdlBranch.strBranchAccountCode = $event.trim().toUpperCase()"...>
9.1) Set (ngModelChange)="mdl*.* = $event.trim()" for all string input Eg:- <input...(ngModelChange)="mdlBranch.strBranchAccountCode = $event.trim()"...>
9.2) Allowe only Numbers[0-9] then set <input...(keypress)="insGlobalFunctions.fnOnkeyPressAlloweOnlyNumbers($event)"