Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta9: ng-click not fired anymore after one click into ng-repeat #1731

Closed
biapar opened this issue Jul 6, 2014 · 9 comments
Closed

Beta9: ng-click not fired anymore after one click into ng-repeat #1731

biapar opened this issue Jul 6, 2014 · 9 comments
Assignees

Comments

@biapar
Copy link

biapar commented Jul 6, 2014

Hi,

I upgrade from beta3 to 9, but I think that I've found a bug. I've a ng-repeat with a ng-click on div. After I click once, I'm not able to do click on other list items. I downgrade to beta3 again.

@perrygovier
Copy link
Contributor

Thanks @biapar, could you put that in a codepen example?

@biapar
Copy link
Author

biapar commented Jul 8, 2014

Uhm... I need a bit of time to do it. I try to extract some code. You can see here a part of it:
http://forum.ionicframework.com/t/bug-beta9-ng-click-not-fired-anymore-after-one-click-into-ng-repeat/6466/6

@Coobaha
Copy link

Coobaha commented Jul 11, 2014

something in release v1.0.0-beta.5 breaks taps. in versions before beta.5 all is ok

@dabaaaz
Copy link

dabaaaz commented Jul 11, 2014

So we need to get back to beta.5 ?

@Coobaha
Copy link

Coobaha commented Jul 11, 2014

beta.4 ok, beta.5 regressed

@perrygovier
Copy link
Contributor

@biapar @Coobaha, any luck with a codepen example?

@mhartington
Copy link
Member

Going to close this as it seems to no long be an issue with beta 11

@hypery2k
Copy link

having this issue with beta13. Are there issues with nav-view?

<ion-view title="Books">
    <ion-nav-buttons side="left">
        <button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
    </ion-nav-buttons>
    <ion-nav-buttons side="right">
        <button class="button button-icon icon ion-refresh" ng-click="load()"></button>
    </ion-nav-buttons>
    <ion-content>
        <div class="bar bar-header item-input-inset">
            <label class="item-input-wrapper">
                <i class="icon ion-ios7-search placeholder-icon"></i>
                <input type="search" data-ng-model="searchQuery.fullTextSearch" ng-change="search()" 
                   placeholder="Type keywords to search ...">
            </label>
            <button ng-click="resetSearch()" class="button-clear icon ion-close-circled"></button>      
    </div>

    <div ng-show="!books && !searching" class="list-group-item">No books found.</div>
    <div ng-show="searching" class="list-group-item">Searching ...</div>

    <ion-list ng-show="books">
        <ion-item ng-repeat="book in books" class="item-thumbnail-left" href="#/app/book/show/{{book._id}}">
            <img src="{{book.value.volumeInfo.imageLinks.thumbnail}}" />
            <h2>{{book.value.volumeInfo.title}}</h2>

            <span>{{book.value.volumeInfo.subtitle}}</span>
            <span ng-show="book.authorInfo">by {{book.authorInfo}}</span>
            <span>{{book.value.volumeInfo.publishedDate}}</span>

            <ion-option-button ng-click="showActionMenu(book)" class=" button-assertive">
                More
            </ion-option-button>
        </ion-item>
    </ion-list>

  </ion-content>
</ion-view>

The option-button ng-click is not fired ...

@ionitron-bot
Copy link

ionitron-bot bot commented Sep 6, 2018

Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.

@ionitron-bot ionitron-bot bot locked and limited conversation to collaborators Sep 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants