Blame view

framework/javascript/InlineFormAction.js 462 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /**
   * Javascript-Template, needs to be evaluated by Requirements::javascriptTemplate
   */
  Behaviour.register({
  	'div.inlineformaction input#$ID': {
  		onclick: function() {
  			var url = jQuery('base').attr('href') + 'admin-custom/' + this.name.substring(7) + '?ID=' + document.getElementById('Form_EditForm_ID').value + '&ajax=1';
  			
  			jQuery.ajax({
  				'url': url,
  				success: Ajax.Evaluator,
  				success: Ajax.Evaluator
  			});
  			
  			return false;
  		}
  	}
  });