#5618 closed bug (fixed)
Error in Jquery Widget example under UI Developer Docs
Reported by: | mjpowersjr | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.2 |
Component: | [meta] ui.docs | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
After reading the basic documentation on how to create a new jquery widget, I found a small error in the documentation about overwriting _setOption from the $.widget class.
This line:
setOption: function(key, value) {
should be:
_setOption: function(key, value) {
taken from: http://jqueryui.com/docs/Developer_Guide
... This functionality is handled by the base widget, you will need to define what to do after each option is set. To do this, you must overwrite the setOption function in your widget's prototype, like so
setOption: function(key, value) {
handle new settings and update options hash
}
...
Change History (3)
comment:1 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 13 years ago by
Milestone: | TBD → 1.9 |
---|
comment:3 Changed 13 years ago by
Milestone: | 1.9 → 1.8.2 |
---|
Note: See
TracTickets for help on using
tickets.
Thanks for pointing this out. Fixed on http://docs.jquery.com/UI/Developer_Guide#Setters_and_Getters and http://jqueryui.com/docs/Developer_Guide#Setters_and_Getters