"Loading.." bug is related to my previous post http://forums.smartclient.com/showthread.php?t=32917
Code:
//ComboBoxItem.js at handleEditorExit method:
// Otherwise, consider the value to be a display value. If we have an ODS and
// display field, check whether we have a data value for it. If not, try to fetch
// a data value for this display value using _checkForValueFieldValue().
} else if (ods != null && displayField != null
&& elementValue != null && elementValue != "" &&
this.shouldFetchMissingDisplayValue(elementValue)
)
{
this._checkForValueFieldValue(value); // <- Here must be an elementValue not a value.
}
With your case, I'm thinking that your server is also returning zero records with in your scenario (maybe not related with the code above) and loading state is not set to false. Need more investigation in your scenario to verify.
Leave a comment: