Tagged Questions
The name-attribute tag has no wiki summary.
78
votes
7answers
11k views
In WPF, what are the differences between the x:Name and Name attributes?
The title says it all. Sometimes it seems that the Name and x:Name attributes are interchangeable.
So, what are the definitive differences between them, and when is it preferable to use one over the ...
4
votes
3answers
39 views
Any hidden reasons to use ids instead of name attributes to identify fields in forms?
I am working on a large web application project and the previous designer favored the use of ids as handles to form fields over name attributes.
I suppose one advantage of this is that the lookup of ...
2
votes
2answers
272 views
Markup validation error when using CFForm
Does anyone know of a solution to the following markup validation error? I'm not sure if this is an issue in ColdFusion or my own code, but the output of the following snippet does not validate ...
0
votes
0answers
167 views
Changing “name” attribute of radio button in markup generated from ASP.NET
In ASP.NET, how can I control the name attribute assigned to radio buttons in the generated mark-up? More precisely I have several RadioButtonLists. The radio buttons end up being named ...
0
votes
3answers
133 views
How to use jQueryValidation without using name attributes
I'm using jQueryValidation and I would like to validate my form without needing to use name attributes.
If the form elements don't have the name attribute only the first element is validated.
...
0
votes
1answer
190 views
Using jQuery validator plugin, how to use dynamically created name attributes to assign rules?
Here's the problem:
The ecommerce system we uses generates a line item for each product purchased. It gives line item's quantity input the name attribute "qty0", "qty1", "qty2", and so on as the ...