With the 15.2 release of Ignite UI for jQuery™ a new set of editor controls were introduced including a reworked igCurrencyEditor
. With a new design focused on simplicity and better UX out-of-the-box some features and their API were revised, removed and new ones added. This topic will cover the differences that will be helpful for developers migrating their applications to the new editors.
This topic aims to help with migration from old currency editor to the new one. Different scenarios are viewed and how they were done before and how they can be done now.
This topic contains the following sections:
Option | Previously | Now |
---|---|---|
animationHideDuration animationShowDuration | Used to set animation duration when dropdown list is displayed/hidden.$(".selector").igCurrencyEditor({ animationShowDuration: 500, animationHideDuration: 500 }); |
These options are replaced by new option dropDownAnimationDuration that controls the dropdown list animation duration.$(".selector").igCurrencyEditor({ dropDownAnimationDuration: 500 }); |
button | This option was used to set visibility of spin and dropdown button. $(".selector").igCurrencyEditor({ button : "dropdown" }); |
This option is renamed to buttonType to better communicate what it does. $(".selector").igCurrencyEditor({ buttonType : "dropdown" }); |
display | Sets gets style.display for outer html element. | This option is removed. |
dropDownTriggers | Sets gets list of actions which trigger display of drop-down list or calendar. | This option is removed. Now Alt+↓ shows dropdown. |
focusOnSpin | If that option was disabled and the editor was not focused, then a mouse click on the spin button would keep the text in the editor in not focused format and perform spin actions. | This option is removed. Now if the editor is not focused, then a mouse click on the spin button will not focus the editor. |
height, width | Previously supported type: number .$(".selector").igCurrencyEditor({ width : 200 }); |
Now supported types are: number , string , null . If using type string , the height can be set in pixels (px) and percentage (%).$(".selector").igCurrencyEditor({ width : "200px" }); |
hideEnterKey | Sets gets ability to hide the Enter key from browser.$(".selector").igCurrencyEditor({ hideEnterKey : false }); |
This option is removed. You can use preventSubmitOnEnter option to prevent submitting when pressing Enter.$(".selector").igCurrencyEditor({ preventSubmitOnEnter : true }); |
listColumns | Sets gets number of columns in drop-down list. | This option is removed. |
listDropDownAsChild | Value true created html element for list as a child of main html element. Value false created list as a child of body.$(".selector").igCurrencyEditor({ listDropDownAsChild : true }); |
Renamed to dropDownAttachedToBody . Value true creates list as a child of body. Value false will create html element for list as a child of main html element.$(".selector").igCurrencyEditor({ dropDownAttachedToBody : true }); |
listMaxHeight | Used to set maximum height of dropdown list in pixels.$(".selector").igCurrencyEditor({ listMaxHeight : 400 }); |
This option is removed. You can use the new option visibleItemsCount to set the number of visible list items.$(".selector").igCurrencyEditor({ visibleItemsCount : 5 }); |
negativeSign | Used to set the character, which is used for negative numeric values. | Only valid cultural signs are allowed for this option. |
nullText | Used to set text which appears in editor when editor has no focus and "value" in editor is null or empty string.$(".selector").igCurrencyEditor({ nullText : "Enter Value" }); |
This option is renamed to placeHolder to better communicate what it does.$(".selector").igCurrencyEditor({ placeHolder : "Enter Value" }); |
renderInContainer | Sets gets option to wrap input field into SPAN. | This option is removed. |
required | Set gets validation for empty value in editor.$(".selector").igCurrencyEditor({ required : true }); |
This options is removed. You can use the validator options to set the field as required.$(".selector").igCurrencyEditor({ validatorOptions : { required: true } }); |
selectionOnFocus | Previously supported members: select , -1 , start , 0 , end , 1 , default , 2 .$(".selector").igCurrencyEditor({ selectionOnFocus: 0 }); |
Now supported members are: selectAll , atStart , atEnd , browserDefault . The default value is selectAll .$(".selector").igCurrencyEditor({ selectionOnFocus: "atStart" }); |
spinOnReadOnly | This was used to override the "readOnly" option and allow changing "value" of editor on spin events.$(".selector").igCurrencyEditor({ spinOnReadOnly : true }); |
This option is removed. Setting readOnly to true disables the spin buttons.$(".selector").igCurrencyEditor({ readOnly : true }); |
textAlign | Default was null |
Now default is left . |
theme | Sets gets selector for css classes used by editor. | This option is removed. |
type | Sets type of editor. | This option is removed. You can use the corresponding controls. |
maxLength | Sets gets maximum length of text which can be entered by user. | This option is removed. |
symbol | Used to set the currency symbol, which is used in display (no focus) state.$(".selector").igCurrencyEditor({ symbol: "*" } ); |
This option is renamed to currencySymbol to better communicate what it does.$(".selector").igCurrencyEditor({ currencySymbol: "*" }); |
Option | Description |
---|---|
currencySymbol | Set custom currency symbol, different from the one in the regional settings. |
allowNullValue | If that option is false, and editor has no value, then value is set to an empty string. |
disabled | Use to set the disabled attribute. Does not allow editing. Disables all the buttons and iteracitons applied. On submit the current value is not sent into the request: $('#currencyEditor').igCurrencyEditor({ disabled: true }) . |
buttonType | Sets gets visibility of spin, clear and drop-down button. |
listItemHoverDuration | Use to set the hover/unhover animation duration of items inside the dropdown list: $('#currencyEditor').igCurrencyEditor({ listItems: ["A", "B", "C", "D"], listItemHoverDuration: 400 }) . |
dropDownAttachedToBody | Gets sets location of drop-down list. |
dropDownAnimationDuration | Gets sets show/hide drop-down list animation duration in milliseconds. |
visibleItemsCount | Use to set how many items should be shown at once: $('#currencyEditor').igCurrencyEditor({ listItems: [10, 20, 30, 40], visibleItemsCount: 2 }) . |
isLimitedToListValues | Use to set the ability to allow values only set into the list items. Enabling this also causes spin actions to cycle through list items instead: $('#currencyEditor').igCurrencyEditor({ listItems: [10, 20, 30, 40], isLimitedToListValues: true }) . |
placeHolder | Gets sets text which appears in editor when editor has no focus and "value" in editor is null or empty string. |
revertIfNotValid | Use to set the editor to revert value to previous value in case of not valid value on blur, or enter key. If set to false clear is called: $('#currencyEditor').igCurrencyEditor({ listItems: [10, 20, 30, 40], isLimitedToListValues: true, revertIfNotValid: false }) . |
preventSubmitOnEnter | Use to set the ability of the editor to prevent form submition on enter key pressed: $('#currencyEditor').igCurrencyEditor({ preventSubmitOnEnter: true }) . |
dropDownOrientation | Use to set drop down opening orientation for the dorp down list when open button is clicked: $('#currencyEditor').igCurrencyEditor({ listItems: [10, 20, 30, 40], dropDownOrientation: 'top' }) . |
suppressNotifications | Disables default notifications for basic validation scenarios built in the editors such as required list selection, value wrapping around or spin limits. |
Method | Previously | Now |
---|---|---|
addListItem | Used to add the object within item at the location indicated by the index. | This method is removed. You should manipulate your data object and rebind the UI component to the updated data for such a scenario. |
addListItems | Used to add the objects within the items array at the location indicated by the index. | This method is removed. You should manipulate your data object and rebind the UI component to the updated data for such a scenario. |
clearListItems | Removed all items from list. | This method is removed. You should manipulate your data object and rebind the UI component to the updated data for such a scenario. |
dropDownElement | Got reference to jquery object which is used as container of dropdown. | This method is renamed to dropDownContainter to better communicate what it does. |
dropDownVisible | Set visibility of dropdown list according to the Boolean value that is passed. | Only gets visibility of dropdown list. There are new methods - showDropDown and hideDropDown, that replaces the previous functionality. |
findListItemIndex | Found index of list item by text that matches with the search parameters. | We should provide only one numeric parameter number and look for exact matches of it (e. g. 15.00 would equal 15). |
getSelectedText | Used to get selected text in editor. | This method is removed as it doesn't make sense to have such a method in numeric editor. |
getSelection | Used to get left or right edge of selection. | This method is removed as it doesn't make sense to have such a method in currency editor. |
getValueByMode | Used to get value in editor by dataMode. | This method is not supported. |
hasInvalidMessage | Used to check if invalid message is displayed. | This method is removed as its` functionality is covered by the API for the igNotifier. |
mainElement | Used to get reference to jquery object which is used as top/outer element of igCurrencyEditor . |
This method is renamed to editorContainter to better communicate what it does. |
paste | Used to paste text at location of caret. | This is renamed to insert and the txt parameter is renamed to string as it is a string of characters. |
remove | This was used to remove editor from its parent element, but keeps the rest of functionality. | This method is not supported. |
removeListItem | Used to remove item from list. | This method is removed. You should manipulate your data object and rebind the UI component to the updated data for such a scenario. |
removeListItemAt | Used to remove item from list at index. | This method is removed. You should manipulate your data object and rebind the UI component to the updated data for such a scenario. |
select | Used to select text in editor. Valid parameters: sel0 , sel1 , val |
sel0 is renamed to start and sel1 is renamed to end to prevent exchanging the two parameters. |
setFocus | Used to set focus to editor with delay. If parameter was -1, then focus was set without delay. | It now supports only positive values for the delay and 0 is default that signifies that it is immediately given the focus. |
spin | Used to increment (positive delta) or decrement (negative delta) value in editor according to the parameter. | This method is replaced by two new methods: spinUp and spinDown . Those methods work both with the value or the dropdown navigation if isLimitedToListValues is enabled. |
text | Used to get or set text in editor. | This is replaced by a getter method displayValue that takes no parameters and returns a string with all the characters shown in the input. |
Method | Description |
---|---|
currencySymbol | Gets оr sets a string that is used as the currency symbol shown with the number in the input. The value provided as a parameter is propagated to the currencySymbol option and thus has the same priority as the option. |
inputName | Gets sets name attribute applied to the editor element. |
displayValue | Returns a string with all the characters shown in the input. |
editorContainer | Gets reference to jquery object which is used as top/outer element of igEditor. |
dropDownContainer | Gets reference to jquery object which is used as container of drop-down. |
showDropDown | Show the dropdown list. |
hideDropDown | Hide the dropdown list. |
dropDownVisible | Returns the visibility state of the drop down listing the items. |
dropDownButton | Returns a reference to the dropdown button of the editor. |
clearButton | Returns a reference to the clear button of the editor. |
insert | Paste text at location of caret. |
spinUp | Increments value in editor according to the parameter or selects the previous item from the drop-down list if isLimitedToListValues is enabled. |
spinDown | Decrements value in editor according to the parameter selects the next item from the drop-down list if isLimitedToListValues is enabled. |
spinUpButton | Returns a reference to the spin up button of the editor. |
spinDownButton | Returns a reference to the spin down button of the editor. |
Event | Changes |
---|---|
hideDropDown | Event is not supported anymore. Two new events are introduced, giving you more control over hiding the dropdown list: dropDownListClosing and dropDownListClosed. |
showDropDown | Event is not supported anymore. Two new events are introduced, giving you more control over showing the dropdown list: dropDownListOpening and dropDownListOpened. |
listSelected | Event is renamed to dropDownItemSelected to better communicate what it does. Use ui.owner to obtain reference to igEditor. Use ui.editorInput to obtain reference to the editable input. Use ui.list to obtain reference to the list container. Use ui.item to obtain reference to the list item which is selected. |
listSelecting | Event is renamed to dropDownItemSelecting to better communicate what it does. Use ui.owner to obtain reference to igEditor. Use ui.editorInput to obtain reference to the editable input. Use ui.list to obtain reference to the list container. Use ui.item to obtain reference to the list item which is about to be selected. |
mouseleave | Event is renamed to mouseout to better communicate what it does. |
Event | Description |
---|---|
rendering | Event which is raised before rendering of the editor completes. |
rendered | Event which is raised after rendering of the editor completes. |
dropDownListOpening | Event which is raised when the drop down is opening. |
dropDownListOpened | Event which is raised when the drop down is already opened. |
dropDownListClosing | Event which is raised when the drop down is closing. |
dropDownListClosed | Event which is raised when the drop down is already closed. |
dropDownItemSelecting | Event which is raised when the drop down list item is selecting. |
dropDownItemSelected | Event which is raised when the drop down list item is selected. |
mouseout | Event which is raised on mouseleave at any part of editor including drop-down list. |
Lib | Prev required version | New required version |
---|---|---|
jQuery core | 1.4.4 | 1.9.1 |
jQuery UI | 1.7 | 1.9.0 |
View on GitHub