[jQuery] [treeview] toggling a node from js

2008-09-16 Thread pihentagy
Hi! I'd like to expand some branches in a treeview. (It is basically a collapsed tree, with some brances opened). Can I do that from javascript? If I simply toggle the visibility, then the expander icon will be screwed up. thanks Gergo

[jQuery] cluetip + only title

2008-03-27 Thread pihentagy
Hi all! I have an annoying but easy problem with cluetip: I have: link $('.tooltip').cluetip({splitTitle: '|', showTitle: false}); I want almost the same, but without any title. Is that possible? My workaround was to write: link and use showTitle:false in the options, but it seems a bit hack

[jQuery] Re: assign to outerhtml

2008-03-04 Thread pihentagy
ewRow.attr('id',id); > > } > > So long as "results" was a string of properly formed TR html, this would > insert a new row after the current one, then remove the current one. > > Of course, this would only work if you don't have a bunch events wired up

[jQuery] assign to outerhtml

2008-03-03 Thread pihentagy
Hi all! I'd like to update a tr tag of a table with an ajax call. The problem is that outerhtml is an IE specific attribute, and I have the row style defined in the tr tag. Is there a cross-browser solution to update a single row of a table either with some cross-browser outerhtml script or witho

[jQuery] form input helper

2008-02-21 Thread pihentagy
Hi all! I'm trying to achieve the following effect: When you focus on an input tag, the content of the div named 'help- for-xxx' should appear in the #help-tip element. And, accorgingly when you leave an input it should disappear. Appearing and disappearing means here fadeIn and fadeOut. Of cou