Search number between range
Aperta
- Lingua principale
- TypeScript
- Stelle
- 1.6k
- Fork
- 867
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Hello guys,
I'm trying to implement a advanced search field in a column where it returns the results between two given inputs:
```
GO
```
```
amountRange(beginValue: string, endValue: string){
if(!beginValue && !endValue){
this.source = new LocalDataSource(this.data);
}else{
this.source.addFilter([
{
field: 'amount',
search: [beginValue, endValue],
filter:{
}
}
], false);
}
}
```
Any ideias how to implement filter function? Thanks :)
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.