-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Add interpolation to form id/name #5736
Comments
There are PRs implementing this already, and in mine I've shown workarounds which could be used in versions of angular prior to either one being merged. #4791 and #5231, with a demo correcting this behaviour without these patches applied in http://plnkr.co/edit/hSMzWC |
@ProLoser so you really just want:
all the other text is just background information? |
@matsko this might be relevant to your forms work.. |
@IgorMinar not directly no. Right now I'm more set on making the error message handling better and less verbose. This solution is a great idea, but it would mess up the scoping of the input properties on the form object (they would only be available once the expression evaluates to something). The more I think about it, the less I feel we should split the name + model properties for the input item. So instead of having |
@IgorMinar yes, sorry for the extra info, I brought it up after seeing @matsko and related discussions and felt this is relevant. @matsko I believe a solution to verbosity in validation can be solved with our approach, but I don't disagree that adding the metadata to the model directly might not be a bad idea either. I DO however understand that by using names, you can have multiple inputs throughout the application that are all tied to the same model leverage unique validation (not that I really know why you would want this). In addition, namespacing by a 'form' allows you to consider a collection of inputs completed. Perhaps, the key is to add meta information to models as you suggest, but still allow people to use the form to check the state of a group of inputs. Possible negative edge-case: What if 2 inputs on the page are the same model, and both have validation messages, but you're only editing one of them, and don't want the messages to show up in both places? (such as a login or registration form in the corner when you're on the login/registration page). |
@matsko et al: I'd be interested in discussing the problem at the conference if you're going to be there? |
You're raising some excellent points. Yes I'll be at ngConf this week. Let's discuss more in person. |
One thing we tried to keep in mind / address is that the issue / tedium isn't JUST error messages. It's every aspect of forms. So we addressed them all together. |
Huge +1 from me on this. It would be really nice to be able to validate variable numbers of inputs for certain applications (e.g. poll creation). I was thinking that another approach to handle this could be placing each instance of the ng-repeat in a nested form, e.g. <form>
<input ng-model='pollTitle'>
<ng-form name='questionList' ng-repeat='question in questions'>
<input ng-model='questionText'>
</ng-form>
</form> This would produce a form that looks like: {
pollTitle: <text>
questionList: [
{questionText: <text>}
...
]
} This might simplify some of the issues involved, allow for greater flexibility/modularity (e.g. repeating of groups of many inputs, easy ability to mixin sub-templates from other places) and eliminate the need for name interpolation. |
While this feature is not ready, code from the answer on stackoverlow can be used to get dynamic name of form control |
I would really like to implement this using the same approach that Dart uses. By treating multiple instances of This way you can read the form details like so: myForm.forms.questionList // [ ... ] an array of ngForm items |
interpolation of form / input name is supported since 729c238 |
If this was implemented in the core, we'd finally be able to create the
ui-input
directive we've wanted for years. It would also enable us to add validation to inputs insideng-repeat
(currently impossible).name
property:<input name="parent.child['{{grandchild}}']">
id
property:<input id="parent.child['{{grandchild}}']">
What's
ui-input
?The @angular-ui team has tried tackling the complexity of form generation for a while now:
Example:
Explanation
You create a powerful form-field template that handles all the different input types; generating labels, ids, names,
<label for>
, formatting, assorted error messages keyed by validation rule, and so forth. Error messages are defined for an entire form or app instead of each input.The
type
property was used to select which chunk of the template you were leveraging.The
ng-model
is expanded into IDs, names, and for-properties (name-spaced by the<form>
orng-form
).The
$input
is a scope utility to access things such asformName.inputName.$error
more easily, but also provides access to transcluded properties of the<ui-input>
and generated properties to make things easier like$input.id
or$input.name
which could of course be explicitly overwritten on theui-input
tag.The text was updated successfully, but these errors were encountered: