micro-app/packages/icpx-form/public/form/data/menu-permission-action.js
2023-05-30 19:27:03 +08:00

18 lines
377 B
JavaScript

/* global jQuery */
(function ($) {
"use strict";
$.formbuilder.menucontrol["permission-action"] = {
options: {
name: null,
value: false,
text: "no target test",
image: "permission-action.png"
},
type: "button",
property: false,
fn: function ($elems, grid) {
alert("exe no target test menu button");
}
};
})(jQuery);