E
egarcia
Guest
Hello, Thank you for the additional information. I have tried to reproduce the issue and I have seen some elements of what you described. However, I have not been able to reproduce the issue as such. I am able to see the description for the item with a blank data value. Since you pointed out to the vm.setValue() code, I looked into ways to override setValue(): change the value based on certain events or use a template() function. (There is also the option of custom component new in KUIB 2.0.1.) The only issue that I was able to see was that without the code that you listed, the ComboBox would show "[object Object]" when it is first displayed on the screen. This particular issue could be solved by using a valueMapper function. Example: this.$components.combobox0.options.virtual = { valueMapper: function (options) { if (options.value && !options.value.State) { options.success(0); } else { options.success([]); } } }; I hope this helps, Edsel
Continue reading...
Continue reading...