Git Product home page Git Product logo

Comments (1)

jfcere avatar jfcere commented on June 18, 2024 2

Hi @bakoserge,

The MzModalComponent exposes 2 methods: open and close as specified on the documentation (see Methods section on bottom of the page). So to access those methods from your component and trigger close method programmatically you will need to add a template reference variable on the mz-modal component in your HTML template and access the modal by using @ViewChild decorator.

modal-example.component.html

Notice the #modal variable added on the mz-modal element tag.

<mz-modal #modal>
  <mz-modal-header>
    Modal Title
  </mz-modal-header>
  <mz-modal-content>
    Modal Content
  </mz-modal-content>
  <mz-modal-footer>
    <button mz-button [flat]="true" (click)="close()">Close</button>
  </mz-modal-footer>
</mz-modal>

modal-example.component.ts

Using @ViewChild decorator with the template reference variable name will retreive the instance of the modal component. Type your property with MzModalComponent for typescript intellisense. Now you can just invoke the close method from the component reference.

import { Component, ViewChild } from '@angular/core';
import { MzModalComponent, MzBaseModal } from 'ng2-materialize';

@Component({...})
export class ModalExampleComponent extends MzBaseModal {
  @ViewChild('modal') modal: MzModalComponent;

  close() {
    this.modal.close();
  }
}

from ngx-materialize.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.