2008-08-09 07:57:44 +02:00
|
|
|
window.onload = function() {
|
2008-08-09 08:18:32 +02:00
|
|
|
|
|
|
|
resourcePath = jQuery('form').attr('action');
|
2008-08-09 07:57:44 +02:00
|
|
|
|
|
|
|
jQuery("fieldset input:first").attr('autocomplete', 'off').autocomplete({list: ["mark rickerby", "maxwell sparks"]});
|
|
|
|
|
2008-08-09 08:18:32 +02:00
|
|
|
jQuery("fieldset input:first").bind('activate.autocomplete', function(e){
|
|
|
|
|
|
|
|
type = jQuery("fieldset input:first").attr('name');
|
|
|
|
value = jQuery("fieldset input:first").val();
|
|
|
|
|
|
|
|
jQuery.getJSON(resourcePath + '/record', {'type':type, 'value':value}, function(data) {
|
|
|
|
jQuery('form input').each(function(i, elm){
|
|
|
|
if(elm.name in data.record) {
|
|
|
|
val = data.record[elm.name];
|
|
|
|
if (val != null) elm.setAttribute('value', val);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
};
|