当我尝试使用addNotification
方法时,我必须使用“应用”按钮...但是在操作中,我不必应用“我可以展示某些东西或做我想做的事”,所以我想知道如果可以更改标签(或删除),请单击“应用”按钮。
这是我的代码:
var actionCollection = {
message:'test text',
actions: null
};
actionCollection.actions = [function () {
for(var j=0 ; j < result_object.id.length ; j++){
console.log("test")
}];
Xrm.Page.getControl("field_name").addNotification({
messages: ['test text 2'],
notificationLevel: 'RECOMMENDATION',
uniqueId: 'my_unique_id',
actions: [actionCollection]
});