Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 2 down vote accepted

I would guess it's doing that because Sencha Touch thinks that {Name: re} is a new record. Why don't you just do: this.selGroup.add(record), that way ST won't add duplicate records..

Here's an example: http://www.senchafiddle.com/#M8EgO

share|improve this answer
Thanx buddy... perfect ten for your answer.... – himanshu May 17 '12 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.