You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Paul, I am trying to use NotifyJs in Dynamics and I found one issue.
I have one Notify1 "toolbar" showing on the Form. When I make an action to hide Notify1 and show Notify2 it is unstable. I should end up with only Notify2 showing.
But instead about half of the time both Notify1 and Notify2 are removed. (I am using unique ID for Notify1 and Notify2). Let me show you my JavaScript example:
function Button1() { Notify.add('Notify1Showing', 'INFO', 'Notify1Id',); } function Button2() { Notify.remove('Notify1Id'); Notify.add('Notify2Showing', 'INFO', 'Notify2Id',); }
Could you please try to add button on Form (Ribbon Workbench) or use two fields with onChange events to simulate this?
What should happen:
I press Button1 and Notify1 shows
I press Button2 and Notify1 is removed and Notify 2 is showed
What happens:
I press Button1 and Notify1 shows
I press Button2 and Notify1 is removed, Notify2 is showed but immediately also removed
No Notify is showing
I press Button1 and both Notify1 and Notify2 are showing
I would be very grateful if you could look into it.
David
The text was updated successfully, but these errors were encountered:
Hi Paul, I am trying to use NotifyJs in Dynamics and I found one issue.
I have one Notify1 "toolbar" showing on the Form. When I make an action to hide Notify1 and show Notify2 it is unstable. I should end up with only Notify2 showing.
But instead about half of the time both Notify1 and Notify2 are removed. (I am using unique ID for Notify1 and Notify2). Let me show you my JavaScript example:
function Button1() {
Notify.add('Notify1Showing', 'INFO', 'Notify1Id',);
}
function Button2() {
Notify.remove('Notify1Id');
Notify.add('Notify2Showing', 'INFO', 'Notify2Id',);
}
Could you please try to add button on Form (Ribbon Workbench) or use two fields with onChange events to simulate this?
What should happen:
What happens:
I would be very grateful if you could look into it.
David
The text was updated successfully, but these errors were encountered: