-
-
Notifications
You must be signed in to change notification settings - Fork 132
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
Edit mode #357
Comments
@z6aak you'll need to override In your case it will detect if the row is "selected" and if it is, then it will render an input, otherwise just text. see: the rows have a |
Great, I will try that out and let know how far I get with it. Thanks :) |
Overriding cellcomponent does the job. I use own isEditing instead of setting canSelect, because when the input is displayed and I click in it, the select is toggled :) |
maybe something like: http://offirgolan.github.io/ember-light-table/#/cookbook/custom-row ? |
Then the form tag will be inside a table, right. I need to put entire table into a form. |
To start with thanks for the awesome addon.
I'm presenting a table for users, where all data on each row has to be editable. What I was trying to do is, when a button (table action) is clicked, then all the cells in the row should be input fields. So basically I want to render different component.
I can not find anything that supports this. How would I go about it? I'm new to Ember :)
The text was updated successfully, but these errors were encountered: