Quickly looking over the jEditable docs, 'editable' isn't an actual event.
You can instead use a function based live query like this:

$('.editable, .bline_measure caption').livequery(function(){
    $(this).editable(function(value, settings) { ... });
});

--
Brandon Aaron

On Fri, Sep 26, 2008 at 4:24 PM, Wayne <[EMAIL PROTECTED]> wrote:

>
> I was trying to put livequery in place on the site, but it seems to
> attach to pre-known events, like click, instead of new events, like
> editable.
>
> For instance, I'm trying to do this:
>
>                $(".editable, .bline_measure caption").livequery("editable",
> function(value, settings) {
>
>
> Wanting to watch these items and rebind editable to the newly created
> captions when I clone them. Is this not a good job for livequery?
>
> -Wayne
>
> On Sep 22, 9:06 am, Wayne <[EMAIL PROTECTED]> wrote:
> > Thanks, Mike. This info helps. Great work, btw.
> >
> > -Wayne
> >
> > On Sep 20, 12:22 pm, Mika Tuupola <[EMAIL PROTECTED]> wrote:
> >
> > > On Sep 19, 2008, at 6:20 PM, Wayne wrote:
> >
> > > > In short, I can clone jEditable items, but I can't edit them in place
> > > > without a page reload and rewriting from the server side. Am I
> > > > ignoring something or do I need to reset a binding somewhere when I
> do
> > > > the DOM modification?
> >
> > > This should help:
> >
> > >http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st.
> ..
> >
> > > basically you need to rebind events to cloned elements.
> >
> > > --
> > > Mika Tuupolahttp://www.appelsiini.net/
>

Reply via email to