Man, what a sweet widget. If you haven't tried it, you're going to
love it.
Question: Should button be re-entrant.
Step 1:
$("#fooAnchor").button( { label : "foo" } ) // makes a button that
says "foo"
Step 2:
$("#fooAnchor").button( { label : "bar" } ) // button still says
"foo" (!?)
My expectation: We should be able to use the .button() interface to
modify a pre-button'd button.
What do you think? Open a ticket?
**--** Steve
--
You received this message because you are subscribed to the Google Groups "jQuery UI Development" group.
To post to this group, send email to jquery...@googlegroups.com.
To unsubscribe from this group, send email to jquery-ui-de...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jquery-ui-dev?hl=en.
$("#fooAnchor").button( "option", "label", "bar" );
So does this:
$("#fooAnchor").button("option", {label : "Awesome!", icons :
{primary:"ui-icon-unlocked"}});
Cool!
**--** Steve
> > jquery-ui-de...@googlegroups.com<jquery-ui-dev%2Bunsu...@googlegroups.com>