silverstripe-framework/javascript/ScaffoldComplexTableField.js
Ingo Schommer 0a8f2a67f6 (merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60228 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-08-09 06:18:32 +00:00

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);
}
});
});
});
};