I may have phrased it poorly, but, for my needs, the livequery
function would probably work. However, any method that I try still
seems to be binding the jEditable onto both the clone and the
original. That is, if I click on the clone to edit it, it opens
jEditable forms on both the original and the clone, and when I submit,
it will only submit AJAX data based on the original element.

Here's an example that I cut out of the project:
http://dev.ficclaims.com/perf/proj/test.php

When you click the link to "Add another baseline" that's when the
clone will be made, and you can see how it works from there. The way I
understand it, livequery should be dynamically unbinding and rebinding
that jEditable function, but for some reason, I don't see it doing
that.

Any insight is appreciated.

-Wayne

On Sep 28, 3:48 pm, Mika Tuupola <[EMAIL PROTECTED]> wrote:
> On Sep 27, 2008, at 11:39 PM, Brandon Aaron wrote:
>
> I understood he was binding Jeditable to event called  
> "editable" (which is possible). So the question would have been does  
> LiveQuery handle other than inbuilt jQuery events?
>
> Although maybe misunderstood the original question.
>
>
>
> > 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?
>
> --
> Mika Tuupolahttp://www.appelsiini.net/

Reply via email to