I click create button then
Uncaught TypeError: Cannot read property 'trim' of undefined error ?
Detail:
Uncaught TypeError: Cannot read property 'trim' of undefined error ?
Detail:
Code:
fetch: function () { var data = {}; var value = this.$element.val(); if (this.params.trim || this.forceTrim) { [COLOR=#FF0000][U]if (typeof value.trim === 'function') {[/U][/COLOR] value = value.trim(); } } data[this.name] = value; return data; },
Comment