Hello guys I have a list in which I am adding list items dynamically.
Here's my code to add items in my store:-
var re = record.get('Name');
console.log('re:-'+re);
if(!this.selGroup){
this.selGroup = Ext.create('MyApp.store.selStore');
console.log("created");
}
this.selGroup.add({Name: re});
It is adding items in the list perfectly but the problem I am facing is that add() method also add items which is already present in the list. I know I have to put filter to prevent to add items which is already present but I am not getting a way to do it.
Please suggest something useful to solve my problem.