with latest version seems that disabling “group digits using delimiter” on numeric field dont work.
it show always commas on groups of thousands even if i remove it on language.json file
showed value: 2,245,657.50
attended value: 2245657.50
with latest version seems that disabling “group digits using delimiter” on numeric field dont work.
it show always commas on groups of thousands even if i remove it on language.json file
showed value: 2,245,657.50
attended value: 2245657.50
In which page did you see that comma character for thousand separator? List Page? View Page? Add Page? Edit Page?
on list and view. not on edit
Yes, you’re right. However, you may remove those thousand separator characters, by simply use “Row_Rendered” server event, for example:
if (CurrentPageID() == “list” || CurrentPageID() == “view”) {
$this->Quantity->ViewValue = $this->Quantity->CurrentValue; // adjust “Quantity” to your actual field name
}
as temporary solution is very good idea.
best way is to use the settings fields
thanks