שלום,
אני מנסה לעשות modal של bootstrap ב angular8,
אבל אני לא יודעת למה כשאני לוחצת על הכפתור שיפתח את הmodal הוא לא נפתח ובנוסף כל המסך תקוע וא"א ללחוץ על כלום.
אני מצרפת את הקוד שלי
תודה רבה.
ts.
constructor(config: NgbModalConfig, private modalService: NgbModal) {
config.backdrop = 'static';
config.keyboard = false;
}
open(content) {
debugger;
this.modalService.open(content);
}
html.
<ng-template #content >
<div class="modal-header">
<h4 class="modal-title" id="modal-basic-title">Hi there!</h4>
</div>
<div class="modal-body">
<p>Hello, World!</p>
</div>
<div class="modal-footer">
</div>
</ng-template>
<button class="btn btn-lg btn-outline-primary" (click)="open(content)">Launch demo modal</button>
בקוד הנוכחי לכאורה אין בעיה,
אולי לא יבאת את העיצוב של bootstrap בקובץ angular.json?
לפי המצב שאת מתארת - זה נשמע בעיה של קבצים שלא יובאו.
אולי תעברי על הקישור הבא:
https://www.javaguides.net/2019/06/how-to-add-bootstrap-to-angular-8.html
ותראי אם כל השלבים יושמו בפרויקט שלך
בהצלחהההההה!!!