typewatch

JQuery TypeWatch Functionality in Delphi

TypeWatch is a JQuery plugin that monitors the time between key strokes in a text input box. It allows for features like refreshing of search results as a user types their search terms, as demonstrated in the 'Users' page in Stack Overflow. If you are typing in the name of a user you wish to seach for and pause typing for half a se...

jquery typeWatch with Dynamic input fields added on the fly.

How can i get the Id of the input field added on the fly? My script adds the input fields on click on the button , using var ix = 1; $(template2(ix++)).appendTo("#dataTable tbody"); var template2 = jQuery.format($("#template2").val()); I also add this , line after the insertion of the new fields, so it adds the typeWatch to all...

how to send an ajax request on clearing text box using jquery typewatch?

Hi I use jQuery typewatch plugin to send an ajax request when the user stops typing in the text box. If the user enters something the result will be filtered based on that. if the user clears out the text box, i want to load the whole result how do i do that? I tried setting the captureLength to 0, even tried to set the minTextLength on...

jQuery TypeWatch - Extending for empty input?

I've created my own autocomplete using ajax and I want to be able to monitor the search input as the user types... I'm using TypeWatch right now and the only issue I see is that if the user has backspaced and the input is now empty, my search results sit there. What would be the best way of extending the TypeWatch function (perhaps addi...