fulcrumapp / fulcrum-expressions

Fulcrum expressions engine
http://developer.fulcrumapp.com/expressions/intro/
5 stars 0 forks source link

[FLCRM-10300] Add ButtonField as a possible target for the click event #57

Closed juanmiret-sn closed 1 year ago

juanmiret-sn commented 1 year ago

Add ButtonField as a possible target for the click event.

They need it in mobile for the new task UX flows.

https://fulcrumapp.atlassian.net/browse/FLCRM-10300

Tested that HyperLink field still works on web by adding this on data events and making sure it shows the alert:

ON("click", 'hyperlink_test', function(event) {
  ALERT("Hyperlink clicked");
});
juanmiret-sn commented 1 year ago

Tested that HyperLink field still works on web by adding this on data events and making sure it shows the alert:

ON("click", 'hyperlink_test', function(event) {
  ALERT("Hyperlink clicked");
});

@osbornk