mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
0a8f2a67f6
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60228 467b73ca-7a2a-4603-9d3b-597d59a354a9
24 lines
678 B
JavaScript
24 lines
678 B
JavaScript
window.onload = function() {
|
|
|
|
resourcePath = jQuery('form').attr('action');
|
|
|
|
jQuery("fieldset input:first").attr('autocomplete', 'off').autocomplete({list: ["mark rickerby", "maxwell sparks"]});
|
|
|
|
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);
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
|
|
}; |