angular-xeditable: Inside
About this issue
- Original URL
- State: closed
- Created 11 years ago
- Comments: 90 (4 by maintainers)
Commits related to this issue
- Edit and submit individual form fields Removes hard editable-form requirement when wrapping editable elements in a form tag. See vitalets/angular-xeditable#6 — committed to EvanOxfeld/angular-xeditable by EvanOxfeld 10 years ago
- easy fix for the problem where Inside <form> not working (see https://github.com/vitalets/angular-xeditable/issues/6) simply include e-single on any element you wish to 'ignore' the hasForm variable. — committed to mitcht/angular-xeditable by deleted user 9 years ago
- Fixes for #6 <xeditable form elements (without whole form editing) and use angular's form validation> — committed to mitcht/angular-xeditable by deleted user 9 years ago
- Merge pull request #315 from mitcht/addesingle Fix for #6 unable to use single xeditable form elements (without whole form editing) + use angular's form validation #314 — committed to vitalets/angular-xeditable by eugef 9 years ago
- Step 20.20.1 - Change form to div to make xeditable works, problem due to issue https://github.com/vitalets/angular-xeditable/issues/6. — committed to okland/meteor-angular-socially by okland 9 years ago
- Step 20.20.1 - Change form to div to make xeditable works, problem due to issue https://github.com/vitalets/angular-xeditable/issues/6. — committed to Urigo/meteor-angular-socially by okland 9 years ago
- Step 20.20.1 - Change form to div to make xeditable works, problem due to issue https://github.com/vitalets/angular-xeditable/issues/6. — committed to Urigo/meteor-angular-socially by okland 9 years ago
What a joke that this hasn’t been fixed. It makes the plugin completely unusable.
@HugCoder do you have an open pull req? There doesn’t seem to be one. If you create a pull req, i’ll merge it.
@im1dermike #1, i don’t see a pull request from you fixing this. #2, angular-xeditable is free, so if you don’t like it go somewhere else. #3, There ARE ways to deal with this. For instance you aren’t forced to use the validation schemes. I prefer angular-message. I don’t bother trying to make angular-xedtiable handle all form stuff, even though it can, but doesn’t do it quite as you would expect.
Hopefully this will get merged. Its the simplest thing… just add ‘e-single’ to any item you want to have ignore the outer form.
Maybe check out ag-grid if you want editable cells in a table.
i have a form and i want to edit the only clicked editable controller not all the editable controllers in the form.
https://github.com/vitalets/angular-xeditable/pull/422 merged
bower install angular-xeditable now allows e-single with version 0.1.10
I had this problem also … was able to fix it by explicitly stating the value like this:
<form editable-form="">
In jade, the browser translates from this:
form editable-form
to this:<form editable-form="editable-form">
It seems the value of the attribute being set is the problem, so the browser needs to be worked around if it is adding the value if not specifically stated.
Hope this helps.