Wijmo UI for the Web
currencySymbol Option
wijmo.input.wijinputnumber Namespace > options type : currencySymbol Option

Default value: null

Determine the current symbol when number type is currency.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijinputnumber("option", "currencySymbol");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijinputnumber("option", "currencySymbol", newValue);
        
});
var currencySymbol : string;
Remarks
If the currencySymbol's value is null and number's type is currency, wijinputnumber will dispaly the currency symbol from the current culture, for use US culture, it is '$'.
But user can change this behavior by setting the currencySymbol option, then the '$' will changed to the specified value.
See Also

Reference

options type
wijinputnumber jQuery Widget