try all lowercase and note single s after thousand. usethousandseparator
pFieldInfo.format.useThousandsSeparator = fields.format.@usethousandseparator;
pFieldInfo.format.useThousandsSeparator = fields.format.@usethousandseparator == "true";
Jon, The thousands separator is a bug. If you are one that is using the FlexViewer source code than you can fix the BUG that is causing this.In the MapManager.mxml line 980.is Currently (BUG):pFieldInfo.format.useThousandsSeparator = fields.format.@usethousandseparator;needs to be (FIX):pFieldInfo.format.useThousandsSeparator = fields.format.@usethousandseparator == "true";
<fields> <field name="ALPHA_NAME" alias="Name:" visible="true"/> <field name="ACCOUNT_ID" alias="Account ID:" visible="true"> <format usethousandseparator="false"/> </field> <fields>
<fields> <field name="ALPHA_NAME" alias="Name:" visible="true"/> <field name="ACCOUNT_ID" alias="Account ID:" visible="true"> <format usethousandsseparator="false"/> </field> <fields>
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.