-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
[PROPOSAL] Support DOM properties binding as HTML attribute. #5506
Comments
I agree that this is a versatille way to interact with DOM, but there are some aspects to consider: 1- DOM attribute changes may cause excessive repaints/redraws, should be used carefully. |
@SteveSandersonMS what are your thoughts regarding this? Is this something we'd ever do? If not, feel free to close it. |
I think at this point it's best to close it. It's possible that one day we'll do something to support addressing DOM element properties directly, but so far this is an extremely niche request. People are routinely building complex apps without needing this or ever considering that they might. We would strongly prefer to avoid introducing this entire conceptual area if it's avoidable, since it's the sort of thing that people will constantly be confused over (when to use attributes vs properties). If the only use cases for it are when interacting with 3rd-party JS libraries, then it might be that developers have good opportunities to make whatever DOM property mutations they want as part of the existing JS interop logic they need to write. This is not to dismiss the validity of the feature request altogether! I know there may be cases where it's inconvenient not to have it. If anyone has compelling use cases, I'd strongly appreciate it if you could post them. Be sure to describe it in an end-to-end way (which 3rd-party components you're trying to use, why they need you to modify DOM properties, etc.). So for now I'll close this, and we will watch out for whether others report similar requirements, or what other examples of its necessity are posted. Hope that makes sense. |
Hello @SteveSandersonMS, When I opened this issue, I was experimenting with 3rd-party web components made with Polymer. I remember some components that input more than a single value using properties. I remember a date picker component that works like this: <date-picker id="my-date-picker"></datepicker> var datePicker = document.getElementById("my-date-picker");
var day = datePicker.day;
var month = datePicker.month;
var year = datePicker.year; Today, I don't use webcomponents, and in the case that I need a date picker in Razor Components, I will use a Razor Component instead of web component. |
A DOM object has attributes (set by HTML attributes) and properties, set or get by dot notation in DOM object.
An example:
As see, the value of the attribute is not the same than the property.
Because the text of textbox rendered by
input
tag is in the property and not in the HTML attribute, if we bind the attribute and change the value of the bound field, nothing occurs in rendered textfield.If we use value instead of bind attribute, if
Name
field change, nothing is reflected in rendered textfield.I propose a syntax to bind field to DOM property.
An possible example:
This syntax, bind
Name
field to DOM property instead of HTML attribute.Why?
bind
, you know what is binding really.In this case, I can't use
bind
attribute, but I can do:The text was updated successfully, but these errors were encountered: