在addNotification中如何更改Apply按钮
In addNotification how to change the Apply button
当我尝试使用 addNotification
方法时,我必须使用 Apply 按钮...但是在操作中我不需要 Apply something 我可以显示一些东西或做任何我想做的事情,所以我想要了解是否可以更改标签(或删除)按钮 "Apply"。
这是我的代码:
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]
});
这里是应用按钮的查询:
添加通知时,功能似乎是有限的并且是预定义的。您不能自定义更多内容。
The addNotification method displays a notification with the messages you specified and two standard buttons: Apply and Dismiss. Clicking Apply executes the action you define; clicking Dismiss closes the notification message.
也许您应该尝试 Xrm.Navigation.openConfirmDialog
来实现您的要求。 Read more
当我尝试使用 addNotification
方法时,我必须使用 Apply 按钮...但是在操作中我不需要 Apply something 我可以显示一些东西或做任何我想做的事情,所以我想要了解是否可以更改标签(或删除)按钮 "Apply"。
这是我的代码:
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]
});
这里是应用按钮的查询:
添加通知时,功能似乎是有限的并且是预定义的。您不能自定义更多内容。
The addNotification method displays a notification with the messages you specified and two standard buttons: Apply and Dismiss. Clicking Apply executes the action you define; clicking Dismiss closes the notification message.
也许您应该尝试 Xrm.Navigation.openConfirmDialog
来实现您的要求。 Read more