fix: wrap Tabular in VBox with cheight for proper scrolling
This commit is contained in:
parent
9f9a60a732
commit
529025a5f4
8
xls2ddl.egg-info/PKG-INFO
Normal file
8
xls2ddl.egg-info/PKG-INFO
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
Metadata-Version: 2.4
|
||||||
|
Name: xls2ddl
|
||||||
|
Version: 1.1.3
|
||||||
|
Summary: a xlsx file to database ddl converter
|
||||||
|
Author: "yu moqing"
|
||||||
|
Author-email: "yumoqing@gmail.com"
|
||||||
|
License: "MIT"
|
||||||
|
Requires-Dist: apppublic
|
||||||
18
xls2ddl.egg-info/SOURCES.txt
Normal file
18
xls2ddl.egg-info/SOURCES.txt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
README.md
|
||||||
|
pyproject.toml
|
||||||
|
setup.cfg
|
||||||
|
xls2ddl/__init__.py
|
||||||
|
xls2ddl/json2ddl.py
|
||||||
|
xls2ddl/json2xlsx.py
|
||||||
|
xls2ddl/singletree.py
|
||||||
|
xls2ddl/tmpls.py
|
||||||
|
xls2ddl/xls2crud.py
|
||||||
|
xls2ddl/xls2ddl.py
|
||||||
|
xls2ddl/xls2ui.py
|
||||||
|
xls2ddl/xlsxData.py
|
||||||
|
xls2ddl.egg-info/PKG-INFO
|
||||||
|
xls2ddl.egg-info/SOURCES.txt
|
||||||
|
xls2ddl.egg-info/dependency_links.txt
|
||||||
|
xls2ddl.egg-info/entry_points.txt
|
||||||
|
xls2ddl.egg-info/requires.txt
|
||||||
|
xls2ddl.egg-info/top_level.txt
|
||||||
1
xls2ddl.egg-info/dependency_links.txt
Normal file
1
xls2ddl.egg-info/dependency_links.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
||||||
5
xls2ddl.egg-info/entry_points.txt
Normal file
5
xls2ddl.egg-info/entry_points.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[console_scripts]
|
||||||
|
json2ddl = xls2ddl.json2ddl:main
|
||||||
|
json2xlsx = xls2ddl.json2xlsx:main
|
||||||
|
xls2ddl = xls2ddl.xls2ddl:main
|
||||||
|
xls2ui = xls2ddl.xls2ui:main
|
||||||
1
xls2ddl.egg-info/requires.txt
Normal file
1
xls2ddl.egg-info/requires.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
apppublic
|
||||||
1
xls2ddl.egg-info/top_level.txt
Normal file
1
xls2ddl.egg-info/top_level.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
xls2ddl
|
||||||
BIN
xls2ddl/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
xls2ddl/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
xls2ddl/__pycache__/tmpls.cpython-310.pyc
Normal file
BIN
xls2ddl/__pycache__/tmpls.cpython-310.pyc
Normal file
Binary file not shown.
BIN
xls2ddl/__pycache__/xls2crud.cpython-310.pyc
Normal file
BIN
xls2ddl/__pycache__/xls2crud.cpython-310.pyc
Normal file
Binary file not shown.
BIN
xls2ddl/__pycache__/xlsxData.cpython-310.pyc
Normal file
BIN
xls2ddl/__pycache__/xlsxData.cpython-310.pyc
Normal file
Binary file not shown.
@ -1,5 +1,8 @@
|
|||||||
data_browser_tmpl = """
|
data_browser_tmpl = """
|
||||||
{
|
{
|
||||||
|
"widgettype":"VBox",
|
||||||
|
"options":{"cheight":40,"width":"100%"},
|
||||||
|
"subwidgets":[{
|
||||||
"id":"{{tblname}}_tbl",
|
"id":"{{tblname}}_tbl",
|
||||||
"widgettype":"Tabular",
|
"widgettype":"Tabular",
|
||||||
"options":{
|
"options":{
|
||||||
@ -90,6 +93,7 @@ data_browser_tmpl = """
|
|||||||
{% if bindsstr %}
|
{% if bindsstr %}
|
||||||
,"binds":{{bindsstr}}
|
,"binds":{{bindsstr}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
get_data_tmpl = """
|
get_data_tmpl = """
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user