Skip to content

Commit

Permalink
Update chapter-14.rst (#819)
Browse files Browse the repository at this point in the history
Quick fix for two errors:
1)
"GridClassStyleBulma" is not accessedPylance
(class) GridClassStyleBulma
The Grid style for Bulma

2)
"FormStyleBulma" is not accessedPylance
(variable) FormStyleBulma: FormStyleFactory
  • Loading branch information
mrworm authored Oct 29, 2023
1 parent efa4935 commit 279d3b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/chapter-14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Create a new minimal app called ``grid``. Change it with the following content.
# in grid/__init__.py
import os
from py4web import action, Field, DAL
from py4web.utils.grid import Grid, GridClassStyleBulma
from py4web.utils.form import Form, FormStyleBulma
from py4web.utils.grid import *
from py4web.utils.form import *
from yatl.helpers import A
Expand Down Expand Up @@ -583,4 +583,4 @@ combine fields to be displayed together as the filter_out method would

You need to determine which method is best for your use case
understanding the different grids in the same application may need to
behave differently.
behave differently.

0 comments on commit 279d3b3

Please sign in to comment.