-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Implement Data frame editor.WF-66 #529
base: dev
Are you sure you want to change the base?
Conversation
2cd7e64
to
a4f0a6c
Compare
de89bef
to
6515937
Compare
src/ui/src/components/core/content/CoreDataframe/CoreDataframeRow.vue
Outdated
Show resolved
Hide resolved
I believe this is inaccurate? |
Can you add a better looking plus (+) button? With material symbols and using the WDS button |
ff2db00
to
ecc9564
Compare
@ramedina86 , do you mean to restore the buttons a bit like I did before ? If yes, using
|
That looks good to me, why was it changed? What's the downside? |
ecc9564
to
698e6e3
Compare
I implemented it @ramedina86 |
698e6e3
to
f433f64
Compare
f433f64
to
9c55c2e
Compare
9c55c2e
to
a7bb87c
Compare
Put the new dataframe editor behind the flag `dataframeEditor`. So to activate the new feature, you need to add the flag in `main.py` like this: ```py wf.Config.feature_flags.append("dataframeEditor") ```
a7bb87c
to
f379733
Compare
Implement behavior to edit a dataframe started in #485 (FabienArcellier#63)
Screencast.from.2024-09-11.21-18-05.mp4
For now, it only allows editing existing cells, but it'll be possible to add/delete some rows in the future.
Technically:
CoreDataframeCell
which re-renderCoreDataframeCellText[Text|Number|Boolean|Unknown]
CoreDataframe
CoreDataframe
handle this event and call a new hookuseDataFrameValueBroker
which handle the update and take care of updating thearquero
table