i Used the ngx-bootstrap Modal. But i faced problem when i used the mat-select inside of it . The mat-select Options display behind the Modal .
i already these solutions here solution and
also this one
here is my code
system.js does not load the base angular2-modal javascript file and i have no clue why. This is my configuration:
(function(global) {
var paths = {
'npm:': '../node_modules/'
};
// map tells the System loader where to look for things
var…
I am currently trying to style a bootstrap 4 Modal window within Angular 5.
I have the scss imported into my global.scss and I am giving the modal window the customClass as followed.
this.modalService.open(content, { windowClass: 'tutorial'});
So…
My side menu or menu toggle code is in the app.compnent.ts. This menu toggle is working perfectly in all the pages before I click Modal. MenuToggle is not working after I click the button for Modal. I'm not sure what is the exact issue. Any…
I have a requirement to implement alert box in my project on click of a button depending on various conditions. Can you please suggest me how to implement alert box using Angular 2 and I don't require traditional window.alert()
trying to get angular2-modal to load, but running into configuration issues I think because their documentation is asking to load 2 modules from different locations.
import { ModalModule } from 'angular2-modal';
import { BootstrapModalModule } from…
I'm using Angular2-modal to create a modal with some content which some dynamic contents inside. This content is basically an image, but the dimensions are not always the same, but I know the dimensions when I create the modal, so how can I specify…
I have an Angular2 App that can show a modal. For that i call an injectable method inside a Js class:
@Injectable()
public showErrorDialog(errorMessage:string, isError:boolean) {
this.modal.alert()
.size('sm')
.showClose(true)
…
This snapshot contains a dashboard view with dynamic chart grids formed using a config json in Angular 2 [for grids we used angular2-grids and for charts chartjs]. As you can see these popups have a setting button placed on top encircled in pic.…
I'm trying to insert a modal on my Angular 2 application but I'm gettin the following error:
Unhandled Promise rejection: Template parse errors: Can't bind to
'showDismiss' since it isn't a known property of 'modal-header'.
I'm using the…
I have angular2-modal running fine in my angular 2 app. However, I am having issues testing via Karma. I have set up my test bed with
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
HttpModule
…
I am trying to understand the necessary changes to make in a generated jhipster app to replace the NgbModals with elements displayed in a page.
I was able to find some help on doing this in older Jhipster versions with angular 1.x but I am unable to…