Question

special character

Hi Team 

How to Remove Special character like (,) in the field.if yes please suggestion to achieve that task.

hoping for positive reply.

regards

manikanta.

Like 0

Like

6 comments

Hello,

To remove the comma from the integer field, you can simply add the following to it's values in the diff:

"useThousandSeparator": false

Ryan

Dear Manikanta,

Please see the example below. I have changed the way Amount column in Opportunity page will be displayed:

{
				"operation": "merge",
				"name": "Amount",
				"values": {
					"controlConfig": {
						"useThousandSeparator": false
					}
				}
			}

Regards,

Anastasia

Hi Ryan Farley,

Tnx a lot its working

 

Anastasia Botezat,

Tnx a lot its working 

Anastasia Botezat,

Hi Anastasia Botezat,/Ryan Farley,

Tnx for ur solution its working fine in the page but it's not working in the section page  for that I am tried like these for example:

            {

                "operation": "merge",

                "name": "UsrCandidateId",

                "values": {

                    "controlConfig": {

                        "useThousandSeparator": false

                    }

                }

            }

and with different id's like "UsrCandidateId9b158461-3066-438b-9b74-94453f842ae6"

please find the screen shots of this field on page and section.

ON SECTION

 

ON PAGE

 

 

 

manikanta,

Unfortunately, the logic for section differs from page and there is no way to apply the property to the grid. Though, you can add a string type column to the object and duplicate value from the float type column to string in the needed format. Afterwards, display this string field in the section. 

Regards,

Anastasia

Show all comments