Hi,
Can you pull in the information without the currency and then use a numeric field (with a currency pattern)? It would be the best approach.
If not, then you will need to strip out all non-numeric characters (except the decimal point).
I can't share a solution we developed for a client, but I can give a direction:
This in the calculate event of the Total field:
var sellPrice, cleanPrice;
if (sellingPrice.rawValue !== null) {
sellPrice = sellingPrice.rawValue.replace(/[^0-9.]+/g, "");
cleanPrice = Number(sellPrice);
}
this.rawValue = cleanPrice;
Hopefully you can extend this,
Niall