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

How about an option for full width and height modal on the size property? #326

Open
arivera12 opened this issue Feb 13, 2017 · 5 comments
Open

Comments

@arivera12
Copy link

This may be the size property for definning a full width and height modal

BootstrapDialog.show({
            message: 'Hi Apple!', 
            size: BootstrapDialog.SIZE_FULL
 });

This are the css to make a full width and height bootstrap modal

.modal-dialog-full
{
            width: 100%;
            height: 100%;
            padding: 0;
}
.modal-content-full
{
            height: 100%;
            border-radius: 0;
}
@nakupanda
Copy link
Owner

Good idea, any online example showing the expected result ?

@arivera12
Copy link
Author

arivera12 commented Mar 3, 2017

Some other guy in other thread added a fully working fiddle see this link:
http://jsfiddle.net/waspinator/6w2ofdby/

Thread link:
#171

@arivera12 arivera12 reopened this Mar 13, 2017
@arivera12
Copy link
Author

Any update on this?

@nakupanda
Copy link
Owner

Hi,

I will do this soon.

@ebrake
Copy link

ebrake commented Feb 2, 2018

In the meantime, it is also possible to make it full screen using existing methods

var modal = BootstrapDialog.show({
    draggable: false,
    ..........
});
// modal.getModalHeader().hide();
// modal.getModalFooter().hide();
modal.getModal().css('width', '100%');
modal.getModal().css('height', '100%');
modal.getModal().css('background', '#FFFFFF');
modal.getModalDialog().css('width', '100%');
modal.getModalDialog().css('height', '100%');
modal.getModalDialog().css('margin', '0');
// modal.getModalBody().css('padding', '0');
modal.open();

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

No branches or pull requests

3 participants