You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
I am using beforeUseConverter to include some extra parameters based on current values in the form. In the callback, in order to modify the url or the extraParams I need to have a handle to the object. I modified version locally by adding param to the call. Can you include in future releases.
/**
* Convert string before use
* @param {String} s
*/
$j.Autocompleter.prototype.beforeUseConverter = function(s) {
s = this.getValue(s);
var converter = this.options.beforeUseConverter;
if ($j.isFunction(converter)) {
s = converter(s, this); ***made change here.
}
return s;
};
Thanks
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am using beforeUseConverter to include some extra parameters based on current values in the form. In the callback, in order to modify the url or the extraParams I need to have a handle to the object. I modified version locally by adding param to the call. Can you include in future releases.
Thanks
The text was updated successfully, but these errors were encountered: