#2316 closed enhancement (wontfix)
removeData for complete namespaces
Reported by: | klaus | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.5 |
Component: | data | Version: | 1.5 |
Keywords: | data | Cc: | |
Blocked by: | Blocking: |
Description
The removeData methods should work on complete namespaces - similiar to unbind - so instead of
$(el).removeData('foo.ns').removeData('bar.ns');
you can write:
$(el).removeData('.ns');
Change History (7)
comment:1 Changed 11 years ago by
Component: | core → data |
---|
comment:2 Changed 10 years ago by
comment:3 Changed 10 years ago by
Keywords: | needsreview added |
---|---|
Milestone: | 1.2.4 |
Priority: | minor → low |
Version: | 1.2.3 → 1.4.4rc |
The .data
method doesn’t do namespacing like that. Namespacing for .data
would look more like:
$('#foo').data('bar', {}); $('#foo').data('bar').baz = 2; $('#foo').removeData('bar');
I am pretty sure this will be wontfix but gonna discuss it with some folks.
comment:4 Changed 10 years ago by
Milestone: | → 1.4.5 |
---|
comment:5 Changed 10 years ago by
Keywords: | needsreview removed |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
The period is not currently a special character in .data()
names. Implementing this could cause regressions for anyone who used names that contained a period.
It's simple for a user to implement their own namespace by assigning a Javascript object to a simply-named .data()
item.
comment:6 Changed 10 years ago by
Version: | 1.4.4rc → 1.5 |
---|
There wasn't a 1.4.5 release, was actually 1.5.
comment:7 Changed 10 years ago by
Milestone: | 1.4.5 → 1.5 |
---|
There was no 1.4.5 release, was actually 1.5.
This seems like a reasonable enhancement, and would make the api more consistent to allow for namespacing data within .data()