[jQuery] [Ajaxify] Problem in noConflict-Mode

2009-07-18 Thread rigo

Hi,

when I run ajaxify in the noConflict-Mode (together with
MooTools :P ), the Option "tagToload" is not performed respectively
the correct returned data is not put in the defined selector.

Can anyone resolve this problem? Has anyone a solution?

cu
rigo


[jQuery] Re: Form submission problem

2009-06-14 Thread rigo

Got it!

The name of the button was the problem.
It shouldn't be "submit", I use "submit-button" now and it works fine.

cu
rigo


[jQuery] [validate] Form submission problem

2009-06-14 Thread rigo

Hi,

I've got a form with a button-element as submit-button.


...
Send


At the top of the page I've got this:

jQuery.noConflict();
jQuery(document).ready(function($){
  $("form#newadForm button.form-button").click( function() {
console.log("fire");
$("#newadForm").submit();
  });
  $("#newadForm").validate({
submitHandler: function(form) {
  form.submit();
}
  });
});

When I click the button, firebug tells me:

1. 'fire'
2. form.submit is not a function

What can I do?

cu
rigo


[jQuery] Re: jQuery barcode

2009-04-29 Thread rigo

Is there any example web page?


[jQuery] [Idea] Plugin to work with Nested Sets and AJAX

2009-04-20 Thread rigo

Hi Developers,

I've got a idea for a new Plugin, but I'm not able to develop it by
myself.

1. There is a Nested-Set-Table with some Items (id, left, right, name)
(http://www.edutech.ch/contribution/nstrees/index.php or
http://www.thundernail.de/projekt.php?url_nr=12&submit=one&id=6 or
http://www.klempert.de/nested_sets/)
2. There should be a JQuery-Plugin which performs some actions to the
tree: Moving, inserting, deleting. (http://www.gosu.pl/MyGosuMenu/demo/
DynamicTree/example2.html)
3. The action should be send to the server via AJAX

Please inform me, If someone likes to develop it.

cu


[jQuery] [validate] Does the validation plugin support required hidden inputs?

2008-02-23 Thread rigo

Hi,

does the validation plugin support required hidden inputs?

I have two input fields: field1 (text) and field2 (hidden). When i
change the text od field1 a js-function is called and the value of the
hidden field2 is changed (or not if the text in field1 is the wrong
one).
In jquery.validate i have set a rule for field2 (required). When i
validate the form and field2 is empty it shows me an error message -
that's good! When i change the field1 text (right one now), the field2-
value is set but the error message doesn't disappear (because the
field2 is hidden and fires no onchange-event).

How can i solve this problem?

cu
rigo