I'm kinda guessing here, I don't really know asp.net so correct me if I am wrong.
I'm assuming that multiview is doing some sort of ajaxy type thing in the background of asp.net in which case when your search form is reloaded the jQuery.autocomplete
would not apply to the new form.
More than likely I'm completely wrong in what I just said though.
Edit for my second comment.
$('.autocomplete').each(function(i,element){
$(element).autocomplete({...});
$(element).result(function(event, data, formatted) {
// Now based on you're element id you can build up an id and work with that
var id = element.id + '-extra-stuff';
var str = data.toString().split("|", 2);
$('#' + id).val(str[1]);
});
});
Nalum
2010-02-24 17:37:25