I just put a new GridTable-Plugin online:
http://plugins.jquery.com/project/GridTable
Any comment appreciated,
Kai
hi,
i have similar problems like shawn: im requesting a service to return
internet-sources for a specific media-type, e.g. video -> amazon.de,
amazon.com, imdb, ofdb, etc...
then i trigger a service for each source, reading and parsing the
source has a duration from 3-30 seconds so there is no ch
use jquerys specific hover-method which workarounds the browser-
failures of mouseover/mouseout.
in the recent jquery-plugin there are also new virtual events
mouseenter, mouseleave i think, which wrap
mouseouver and mouseout and are used by hover()
$(elem).hover(overFn, outFn)
no, do a window.open() on the excel.php-url ...
XHR is not meant to involve user-interaction (open/save) on unknown
mime-types.
// store selector-results in variables and reuse
$sel = $('.foo-class')
$sel.click
$sel.find('.bar')
$sel.somePlugin
// specify selectors as hard as possible
$('body > div.foo > div.bar > a.foobar')
is more specific and significantly faster than
$('a.foobar')
// use the scope
$('div.foob
I think you have to
display: block and
float: left the labels in a div container
> I think the OP is adding elements to the dom, and then wondering why
> the events for the new elements aren't working.
you're looking for the fabulous livequery plugin:
http://brandonaaron.net/docs/livequery/
so long,
kai
On 5 Mrz., 04:47, jquertil <[EMAIL PROTECTED]> wrote:
> probably wont work though - maybe better to have the PHP script return
> a boolean true or false or 1 and 0 and then making sure your response
> type is value.
i'm also using a boolean identifier like
ACK = true, or ACK = false in the JSON-
> Much like how jquery keeps the javascript out of the HTML, it's so
> much cleaner to keep PHP out of the HTML as well.
>
> Have a look at the Smarty templating system for PHP. It's awesome.
that's absolutely pointless, to start a new templating-engine-for-php-
rant ... ;)
php itself is a templa
On 5 Mrz., 16:51, Jonny <[EMAIL PROTECTED]> wrote:
> I know that the people who are asking this
> question (through me) are not wanting to load a heavy js library
> (Jquery), so the advice below won't really work :(
quite dangerous to call jquery "heavy" in this group, as it's one of
the bigges
On 5 Mrz., 15:40, J Moore <[EMAIL PROTECTED]> wrote:
> wouldn't nesting the methods work? e.g.
unfortunately not as some methods have to be invoked in parallel.
generally exactly this nesting looks fine with no real code behind
but it is just cruel if you imagine having error-handling, rollbacks
Hello,
as everything Ajax-related is (mostly) asynchronous every response is
handled using callbacks.
I often have the problem that to do action A I have to initialize
multiple components on the page (if not initialized yet), then fire 1-
n ajax calls, waiting for the callback and so on.
this lea
On 31 Jan., 13:17, howa <[EMAIL PROTECTED]> wrote:
> Let's say I have to make a user customizable front page, e.g. There
> are multiple blocks within a page (e.g. sports, news, finance, game
> etc), users would be able to choose their preferences (Something
> similar to Yahoo or iGoogle), they
in the current jquery-version 1.2 you have to unbind mouseenter and
mouseleave.
this.table.find('> tbody >
tr').unbind('hover').unbind('mouseenter').unbind('mouseleave').removeClass('gt-
hover')
anyone any hint please?
at least a comment if this *should* work?
hello,
i am having problems to rebind the hover event on table-rows, the
unbinding works just fine but the hovering does not work anymore, the
hover does not get bound again.
snippet:
// hover
this.table.find('tbody
tr').unbind('hover').unbind('mouseover').unbind('mouseo
http://plugins.jquery.com/project/fieldselection
hth, kai
if the scanner inputs its data into a textarea or something
intercept form-submit, usually triggered by enter on an text-input
$('#frm').submit(function(e) {
alert( 'barcode: ' + $('#barcode').text() );
return false; // stop form-submit
});
or intercept the ENTER-key with the keydow
read the livequery-docs, there is no signature like
livequery(String type, Function handler, Function anotherHandler)
quick & untested:
var init = function() {
$(this).toggle(function(e) {
$(this).attr("src","images/btnReactivate.gif")
}, function(e) {
$(this).attr("src","images/btnDeactivate.
i forgot,with an normal "each" (not using livequery) and a jquery-
plugin, it works
$.fn.andThen = function(cb) {
cb.call(this);
return this;
}
$(document).ready(function() {
$('div.rating').each(function() {
$('#log').append("" + $(this).text() +
i think encapsulating your whole code with parantheses wont work
"( $('*').livequery(function(){ . } ).andThen"
you may use a plugin like this:
1
2
3
$.fn.andThen = function(cb) {
cb.call(this);
return this;
}
$(document).ready(function() {
$('div.rating').live
i think the key-check is this: !s.url.indexOf("http")
"file://foo/bar" cant be requested via XHR, so
this is pretty smart.
why not just use prototyping? thats what jscript is all about and
personally i think, its *the* best idea to add that feature.
i cant see any difference in smoothness ...
Hello,
I recently finished a working beta version of yet another grid-plugin
for jQuery: gridTable
features:
- using a , not ripping it off at all (so no fixed height for
tbody, as overflow:auto on tbody is not supported)
- server-side sorting
- server-side paging
- custom renderers
- custom edi
25 matches
Mail list logo