custom:api_js_gw_action

Questa è una vecchia versione del documento!


GwAction

This will cause the execution of the gwAction, with name gwActionName, existing under the gwClass with name gwClassName the gwAction will be invoked with the declared set of parameters, availables under the specified variables names

  • gwActionName String, required
  • gwClassName String, required
  • functionParametersNames String[], optional default []
  • functionParameters Object[], optional default []
example.js
var gwActionName = 'gwActionName';
var gwClassName = 'gwClassName';
var functionParametersNames = ['param1', 'param2'];
var functionParameters = ['abc', 123];
 
executeGwAction(gwActionName, gwClassName, functionParametersNames, functionParameters);

Execute js action in the gwClassDetail context. Like gwAction in toolbal, or in '…' button for the single record. ACL and DACL are checked server side.

  • gwClassName String, required
  • itemId String, required
  • gwActionName String, required
example.js
var itemId = '123';
var gwClassName = 'gwClassName';
var gwActionName = 'gwActionName';
executeGwActionOnGwClassDetail(gwClassName, itemId , gwActionName);

This will check static and dynamic permissions for the gwAction, with name gwActionName, existing under the gwClass with name gwClassName The callback is invoked with argument the server side computed data If the gwAction with the specified name is not found a warn is however logged If gwActiveUser ha no execute permission upon the gwAction with the specified name a warn is however logged

  • gwActionName String, required
  • gwClassName String, required
  • itemId, String, required
  • callback, Object, required. Invoked at end with an incoming parameter Object done this way: {hasAction: true, gwAction: {..}, hasPermission: true}
example.js
var gwActionName = 'gwActionName';
var gwClassName = 'gwClassName';
var itemId = '123';
var callback = function(
	parmas //Object
){
	var hasAction = parmas.hasAction;
	var gwAction = parmas.gwAction;
	var hasPermission = parmas.hasPermission;
	var item = parmas.item;
	if(hasAction && gwAction && hasPermission){
		//TODO
	}
};
 
checkGwActionPermissions(gwActionName, gwClassName, itemId, callback);
  • custom/api_js_gw_action.1655220426.txt.gz
  • Ultima modifica: 2022/06/14 17:27
  • da giorgio.scali