CrystalWindSnake

Results 25 comments of CrystalWindSnake

Currently options can be modified by accessing the native element ```python ds = bi.data_source( pd.DataFrame( {"name": "Alice", "age": 18, "parent": "David"}, {"name": "Bob", "age": 21, "parent": "Eve"}, {"name": "Carol", "age":...

Perhaps a way to tweak the configuration could be provided ```python ds.ui_aggrid().adjust_column_defs( { # 0 means put in the first column 0: { "headerName": "xxxx", "children": [ { "field": "name",...

Inefficient execution due to vmodel needing to fetch the caller's previous frame. Consider adding a new type of binding ```python data = deep_ref({"a": "text"}) rxui.input(value=rxui.two_way_binding(data.value,'a')) ```

now we can : ```python data = deep_ref({"a": "text"}) rxui.input(value=rxui.vmodel(data,'a')) ```

@ShannonZ Question 1: I did not experience any issue with losing the last element on my side. I ran the code you provided and the output is : ```shell update...

@ShannonZ Question 2: This problem is probably caused by a bug in the proxy. `rxui.ViewModel` is intended to simplify the process, but if you find it confusing, you could use...

The issue of empty print output is a bug in the proxy, which will be fixed in the next version.

@falkoschindler Hi, I have already completed the basic functionality implementation. I will set aside time later to write tests and documentation. However, I encountered numerous challenges during the implementation process....

> Ok, thanks, @CrystalWindSnake! Just let me known when you think it's a good time for a first code review. 🙂 I've been quite busy with work recently, and I...

@rodja This approach encounters difficulties with ui.table. ui.table refreshes at certain moments, such as when switching pages or when the screen size changes, and after refreshing, the content of Teleport...