Hi there, we have a large number of fields available on a grid and this has exposed a bug with your isc.FormulaBuilder.mappingKeyForIndex() method.
isc.FormulaBuilder.mappingKeyForIndex(675) = "YZ"
The next value in a loop that creates mapping keys should be "ZA". However,
isc.FormulaBuilder.mappingKeyForIndex(676) = "A"
The pattern corrects itself once you get to isc.FormulaBuilder.mappingKeyForIndex(702) = "AAA". So, there is a problem with the method not outputting "ZA" to "ZZ" correctly. You can recreate this in any smartclient environment.
isc.FormulaBuilder.mappingKeyForIndex(675) = "YZ"
The next value in a loop that creates mapping keys should be "ZA". However,
isc.FormulaBuilder.mappingKeyForIndex(676) = "A"
The pattern corrects itself once you get to isc.FormulaBuilder.mappingKeyForIndex(702) = "AAA". So, there is a problem with the method not outputting "ZA" to "ZZ" correctly. You can recreate this in any smartclient environment.
Comment