source: sapic/static/DataTables/extensions/FixedColumns/Readme.md @ cd20b73

erwinexplicacion_situacionalgestion_usuariostaller_django
Last change on this file since cd20b73 was 57f6191, checked in by lhernandez <lhernandez@…>, 7 años ago

Agregado estructura del proyecto, desarrollado e implementado la gestion de usuario, por estabilizar la gestion de usuario segun diagramas de secuencias

  • Propiedad mode establecida a 100644
File size: 2.1 KB
Línea 
1# FixedColumns
2
3When making use of DataTables' x-axis scrolling feature (`scrollX`), you may wish to fix the left or right most columns in place. This extension for DataTables provides exactly this option (for non-scrolling tables, please use the FixedHeader extension, which can fix the header and footer).
4
5
6# Installation
7
8To use FixedColumns the primary way to obtain the software is to use the [DataTables downloader](//datatables.net/download). You can also include the individual files from the [DataTables CDN](//cdn.datatables.net). See the [documentation](http://datatables.net/extensions/fixedcolumns/) for full details.
9
10## NPM and Bower
11
12If you prefer to use a package manager such as NPM or Bower, distribution repositories are available with software built from this repository under the name `datatables.net-fixedcolumns`. Styling packages for Bootstrap, Foundation and other styling libraries are also available by adding a suffix to the package name.
13
14Please see the DataTables [NPM](//datatables.net/download/npm) and [Bower](//datatables.net/download/bower) installation pages for further information. The [DataTables installation manual](//datatables.net/manual/installation) also has details on how to use package managers with DataTables.
15
16
17# Basic usage
18
19FixedColumns is initialised using the `fixedColumns` option in the DataTables constructor - a simple boolean `true` will enable the feature. Further options can be specified using this option as an object - see the documentation for details. DataTables' scrolling options should also be enabled to use this feature.
20
21Example:
22
23```js
24$(document).ready(function() {
25        var table = $('#example').DataTable( {
26                scrollY:        "300px",
27                scrollX:        true,
28                scrollCollapse: true,
29                paging:         false,
30                fixedColumns:   true
31        } );
32} );
33```
34
35
36# Documentation / support
37
38* [Documentation](https://datatables.net/extensions/fixedcolumns/)
39* [DataTables support forums](http://datatables.net/forums)
40
41
42# GitHub
43
44If you fancy getting involved with the development of FixedColumns and help make it better, please refer to its [GitHub repo](https://github.com/DataTables/FixedColumns).
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.