-
Hello, I don't have any text in the file then the application gives me this error. I am creating an application in another language and want to change this to Polish |
Beta Was this translation helpful? Give feedback.
Answered by
evnchn
May 3, 2025
Replies: 1 comment
-
from nicegui import ui
columns = [
{'name': 'name', 'label': 'Name', 'field': 'name', 'required': True, 'align': 'left'},
{'name': 'age', 'label': 'Age', 'field': 'age', 'sortable': True},
]
ui.table(columns=columns, rows=[], row_key='name').props('no-data-label="So empty..."')
ui.run() ![]() Inspired by: https://quasar.dev/vue-components/table/#example--no-data-label https://github.com/quasarframework/quasar/blob/dev/docs/src/examples/QTable/NoData.vue |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
evnchn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Inspired by:
https://quasar.dev/vue-components/table/#example--no-data-label
https://github.com/quasarframework/quasar/blob/dev/docs/src/examples/QTable/NoData.vue