Closed matt212 closed 7 years ago
Hi @matt212,
You can simply set a Promise object as remote
property and build your own url.
<select selector remote="remote(search)" ... ></select>
$scope.remote = function (search) {
return $http({ url: '/colum/' + search });
};
Note: $http
service already returns a promise, so you don't need to wrap it yourself.
Hi, i wanted to format the response from $http which involves promise when i use one i am getting this error
Hi, my issues is my search api url is /colum/words not search?colum=words . Could you please provide pointers wherein i can configure this plugin for /colum/words