• Skip to primary navigation
  • Skip to main content
pythonGrid

pythonGrid

Datagrid for Python Web Frameworks

  • Home
  • Docs
  • Demo
  • Download
  • Contact

pythongridstg

enable_search()

pythongridstg · April 28, 2020 ·

  • Parameter(s):
    • can_search: boolean. When set to true, the search icon displays in the footer, and the integrated search is toggled when the icon is clicked.
  • Description:
    • The integrated search provides an intuitive interface for searching data within the datagrid. The user can search one or multiple fields. No additional programming is required. The datagrid is automatically refreshed and repopulated with results returned from the db.
  • Remark:
    • The integrated search is toggle off by default. Click on the Search button in the footer to toggle on the integrated search.

Exmaple:

grid.enable_search(True)

set_dimension()

pythongridstg · April 28, 2020 ·

  • Parameter(s):
    • width: Datagrid width in pixel
    • height: Datagrid height. The default is 100% which expanses grid vertically to the entire browser height in pixel
    • shrinkToFit: true or false. If set to false, a horizontal bar will appear when the total width of the grid is wider than the dimension width. The default is true.
  • Description:
    • Set the overall height and width
  • Remark:
    • It is recommended to set shrinkToFit to false when there are a large number of columns to display.

Example:

grid.set_dimension(800, 400)

set_pagesize()

pythongridstg · April 28, 2020 ·

  • Parameter(s):
    • pagesize: An integer value indicates the number of results displaying in a page in the datagrid
  • Description:
    • This function changes the default pagination of the datagrid. The default is 20.
  • Remark:
    • Pagination is disabled when set_scroll() is set to true. See set_scroll() for more information.

Example

grid.set_pagesize(50)

set_col_hidden()

pythongridstg · April 28, 2020 ·

  • Parameter(s):
    • col_name: Column name
    • new_title: Display title in the grid column header
  • Description:
    • Change data grid column header text from the default data field name to a more user-friendly name
  • Remark:
    • The default column header text is the database table data field name

Example:

grid.set_col_hidden(['customerNumber, logTime, shippedDate, requiredDate'])

set_col_title()

pythongridstg · April 28, 2020 ·

  • Parameter(s):
    • col_name: Colume name
    • new_title: Display title in grid column header
  • Description:
    • Change data grid column header text from the default data field name to a more user-friendly name
  • Remark:
    • The default column header text is the database table data field name

Example:

grid.set_col_title('orderNumber', 'Order #')
  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to Next Page »

pythonGrid

pythonGrid is a free and open-source datagrid library made for Python web framework

Copyright © 2025 · pythonGrid | privacy policy

  • Demo
  • Documentation
  • Download
  • T&C
  • EULA
  • Contact Us