Показать сообщение отдельно
Старый 22.05.2020, 18:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,459 / 846 (79) +++++++
Регистрация: 28.10.2006
goshoom: FormObservableLink works in data source extensions
Источник: http://dev.goshoom.net/en/2020/05/fo...ce-extensions/
==============

FormObservableLink class is useful for refreshing display and edit methods in D365FO. You create an instance variable of FormObservableLink type in a form, initialize it and call its observe() method in display/edit methods that you need to refresh on demand. When the refresh is required, you call markChanged() method of FormObservableLink and the system will rerun the methods and display new values. You can find more details in AX 7. Display methods and Form Observability, for instance.

I wondered if I can do the same in a data source extension and I wasn’t really should that it would work. But it does – and the implementation is virtually the same as when building a whole form.

Here is a simple example:

[ExtensionOf(formDataSourceStr(smmContactPerson, ContactPerson))]final class MySmmContactPerson_ContactPersonDs_Extension{ // Declare and initalize FormObservableLink private FormObservableLink observableLink = new FormObservableLink(); edit NoYes myMethod(boolean _set, ContactPerson _contactPerson, NoYes _newValue)    { // This says that observableLink will be able to refresh myMethod()        observableLink.observe();         ....    } void refreshMethodsWhenSomethingHappened() { // Here we trigger a refresh observableLink.markChanged(); }}








Источник: http://dev.goshoom.net/en/2020/05/fo...ce-extensions/
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.