Falko Schindler

Results 231 comments of Falko Schindler

I'll close this issue as completed. Of course we can (and should) continuously improve the documentation when adding new features or posting new code examples in GitHub discussions.

See https://nicegui.io/documentation/table and https://github.com/zauberzeug/nicegui/blob/main/website/more_documentation/table_documentation.py for an example of multiple demos per UI element.

I just implemented the `app.on_exception` method for registering exception handlers. By default there is only `globals.log.exception` registered, but you can add `print`, `ui.notify`, or something completely custom. Regarding `ui.exceptions_dialog`: In...

@groucho86 ```py from nicegui import app, ui app.on_exception(ui.notify) ui.button('Do something impossible', on_click=lambda: print(1 / 0)) ui.run() ```

Yes, QSelect offers what we are looking for: https://quasar.dev/vue-components/select#filtering-and-autocomplete

So far I couldn't get `ui.select` working with the `use-input` prop.

@rodja Sure, you can update search results on every input value change. But as explained in [my first comment](https://github.com/zauberzeug/nicegui/issues/272#issue-1551040457) this issue is about searching within the options of `ui.select`.

@Allen-Taylor Very interesting! You found some props I wasn't aware of and that seem to be important for combining an input with a dropdown menu. I boiled it down to...

@Allen-Taylor Interesting! Where did you find `QSelectWithFilter`? Or is it your implementation? JustPy seems to have the same problem: > My issue is when I use the filter event, the...

Meanwhile I managed to get one step further: Using the `'input-value'` event instead of `'filter'` I can successfully narrow down the list of options. There are, however, still some issues...