Replies: 1 comment 1 reply
-
Hi, Well, Fancybox can display any HTML, so, there should not be any issue with tables. If you could create a live demo using any code playground (jsfiddle, codesandbox, etc), then it would be easier to help you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi does anyone here know how to do data tables inside fancy box and listing some price List?
<title>Purchase Order</title> <style> body{ font-size: smaller; } .form-control:focus { border-color: #28a745; box-shadow: 0 0 0 0rem rgb(255, 255, 255); } .floating-label-form-group { position: relative; border-bottom: 1px solid #e9ecef; } .form-select:focus { border-color: #28a745; box-shadow: 0 0 0 0rem rgb(255, 255, 255); } .fancybox-slide--iframe .fancybox-content { width : 800px; height : 600px; max-width : 80%; max-height : 80%; margin: 0; } @media (max-width: 480px) { .input-group-addon { width: 100%; box-sizing: content-box; white-space: pre-line; } } </style>Purchase Order
// $(document).ready(function(){
// $('[data-fancybox="gallery"]').fancybox({
// buttons : [
// 'slideShow',
// 'fullScreen',
// 'thumbs',
// 'close'
// ],
// thumbs : {
// autoStart : true
// }
// });
// });
// $.fancybox.open({
// src : 'https://picsum.photos/200/300',
// type : 'iframe',
// opts : {
// afterShow : function( instance, current ) {
// console.info( 'done!' );
// }
// }
// });
// fancybox html bootstrap
Beta Was this translation helpful? Give feedback.
All reactions