Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1085
Can't select an entry from a combo column that uses an empty string as its value
posted

Due to the following code in infragistics.ui.combo.js method _updateFromList, it is impossible for a user to select a value from a combo editor column where the value is an empty string:

            if (txt.length > 0 || zero) {
                this._onChange(e, 2, txt);
            }

Setting the value to blank is not acceptable due to the fact that this is a different value than empty string.

Parents Reply Children