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

Add ability to handle external actions #10

Closed
zaikin-andrew opened this issue Aug 29, 2016 · 3 comments
Closed

Add ability to handle external actions #10

zaikin-andrew opened this issue Aug 29, 2016 · 3 comments

Comments

@zaikin-andrew
Copy link

Hi. Could you add ability to use public method after external actions? Like here

$grid.on( 'click', '.grid-item', function() {
  // change size of item via class
  $( this ).toggleClass('grid-item--gigante');
  // trigger layout
  $grid.masonry();
});

We use $grid.masonry(); for adapting grid to current state.

@jelgblad
Copy link
Owner

In angular2 you can access all public function on a component either by

<masonry #myMasonry>
  <masonry-brick (click)="myMasonry.layout()"></masonry-brick>
</masonry>
@ViewChild(AngularMasonry) private masonry: AngularMasonry;

myClickHandler(){
  this.masonry.layout();
}

@zaikin-andrew
Copy link
Author

Thank you! :)

@AbhayVel
Copy link

Hi jelgblad,

Thanks a lot, Please close this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants