I can sucessfully call the parser on other objects, but when I try and call it on the validatebox or textbox I get a too much recursion error.
My guess is that the validatebox parsesr is also called by other objects and this is resulting in this recursion, but how can I solve this ?
var parser = $.fn.textbox.parseOptions;
$.fn.textbox.parseOptions = function(target){
var me = $(target);
var opt = parser.call(this, target);
if (opt.multiline==false && me.hasClass('multiline')) opt.multiline=true;
return opt;
}