Hi,
I've created a custom button on the Lead entity and it shows in the mobile app, which is weird as I have other custom buttons in other entities and none of these are show.
Is a custom Qualify button and it has in common with the ootb button the images.
- Why this button is visible in the mobile app?
- Why the click event is not triggered?
The click event of the button calls a very simple function that shows an alert, I'm using following code
var currency = Xrm.Page.getAttribute("transactioncurrencyid").getValue(); if (currency == null) { Xrm.Utility.alertDialog("You must enter a currency before qualifying a lead"); Xrm.Page.getControl("transactioncurrencyid").setFocus(true); return; }
*This post is locked for comments