Project

General

Profile

Feature #290 » 6-HtmlFile.html

Junaid M, 02/19/2024 05:46 PM

 
???File Path
==========
***...\ClientApp\srcpp\src\travel\master-grouping\master-grouping.component.html


???Check the points
==================
1) Set Mandatory field "red *" and "required" (Eg:- <input type="text" id="username" name="username" required>; <span style="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\travel\serviceModels.cs->MdlMasterGrouping
7) Set and Check Language translate
8) Two way binding based on mdlMasterGrouping
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)"
9.3) Allowe only Amount(Numbers with Decimal[.]) then set <input ... (keypress)="insGlobalFunctions.fnOnkeyPressAlloweOnlyNumbersWithDecimal($event)"
9.4) In number or Amount(Default value not empty string) input (ngModelChange)="mdl*.* = $event.trim() || 0"
9.5) Autocomplete no need other(9.0/1/2/3/4) points(9.*)
10) List column data based on a ID then use <dxo-lookup>...</dxo-lookup> - Check branch.html
11.1) Right side button Hide and Show based on GUI action mode - Check branch.html
11.2) Right side SAVE button Label change "SAVE" / "UPDATE" - Check branch.html


(6-6/10)