Ofer Herman
Ofer Herman
Hi @tauqeergmail, Haven't had the time to handle it yet
when using url formatter you can change the URL in any way that you want see the example in the [demo](https://github.com/oferh/ng2-completer/blob/master/demo/native-cmp.ts#L91) ``` this.dataRemote2.urlFormater(term => { return `https://api.themoviedb.org/3/search/movie?api_key=36bf560f8967672b5e428038340f0065&language=en-US&query=${term}&page=1&include_adult=false`; }); ```
you can do something like this: ```typescript private myOtherValue: string; constructor() { this.dataRemote2.urlFormater(term => { return `https://example.com/search?term=${term}&myOtherParam=${this.myOtherValue}`; }); } public onValueSelected(newValue: string) { this.myOtherValue = newValue; } ```
Hi @tanvir-bd, you can create you own custom input and do that, take a look at https://github.com/oferh/ng2-completer/blob/master/demo/material-cmp.ts
what's RxJS version?
will be great if someone can create a github repo that reproduces the issue as I'm unable to reproduce it
please provide more details
Hi, do you need multiple select or that you need an object that has more than just the title? multi-select is not supported but getting the original object is using...
@mdigital-demo don't think I'll have time to support it in the near future
Can you provide a plunker that reproduces the issue, it's working in this sample https://plnkr.co/edit/qVWP3H?p=preview