jQWidgets es un marco de JavaScript para crear aplicaciones basadas en web para PC y dispositivos móviles. Es un marco muy potente, optimizado, independiente de la plataforma y ampliamente compatible. jqxWindow se usa para ingresar datos o ver información en una aplicación.
La propiedad showCollapseButton se usa para establecer u obtener si el botón de contracción será visible o no.
Sintaxis:
- Establezca la propiedad showCollapseButton .
$('#jqxWindow').jqxWindow({ showCollapseButton: true });
- Obtenga la propiedad showCollapseButton .
var showCollapseButton = $('#jqxWindow').jqxWindow('showCollapseButton');
Archivos vinculados: descargue jQWidgets desde el enlace dado. En el archivo HTML, busque los archivos de script en la carpeta descargada.
<enlace rel=”hoja de estilo” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<enlace rel=”hoja de estilo” href=”jqwidgets/styles/jqx.summer.css” tipo =”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”jqwidgets /jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js ”></guion>
Ejemplo: El siguiente ejemplo ilustra la propiedad jqxWindow showCollapseButton en jQWidgets. En este ejemplo, showCollapseButton se establece en true .
HTML
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href= "jqwidgets/styles/jqx.summer.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="jqwidgets/jqxwindow.js"></script> <script type="text/javascript" src="jqwidgets/jqxbuttons.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#jqxwindow").jqxWindow({ height: 100, width: 200, theme: 'energyblue', showCollapseButton: true }); }); </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxWindow showCollapseButton Property</h3> <div id='content'> <div id='jqxwindow'> <div> Header</div> <div> <div>GeeksforGeeks</div> </div> </div> </div> </center> </body> </html>
Producción:
Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxwindow/jquery-window-api.htm?search=
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA