File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 4646 function parseValue ( ) {
4747 //"parse" through the control value, ensure no-flicker with formatted values
4848 //model controller will attempt to set the edit text (not actual value) to the model. Only allow the actual control value to update.
49+
50+ // No events fired when custom value is entered, this change won't affect the old combo
51+ var combo = element . data ( controlName ) ;
52+ if ( combo . options . allowCustomValue && combo . refreshValue != undefined ) {
53+ combo . refreshValue ( ) ;
54+ }
4955 return comboValue ( element . data ( controlName ) ) ;
5056 }
5157 element . on ( $ . ig . angular . igCombo . events . join ( " " ) , function ( event , args ) {
617623 module . directive ( control , igniteElementDirectiveConstructor ) ;
618624 }
619625 }
620- } ( angular , jQuery ) ) ;
626+ } ( angular , jQuery ) ) ;
You can’t perform that action at this time.
0 commit comments