Kinetic Layer: Disable button while executing OnClick event

You’re going to want to do a combination of rules and events.

  1. Bind your button to a field (it doesn’t have to be real DB column)

  1. Add a row-update widget to your button click event that sets something like TransView.Disable to true. Add a second one after your function call that will set it back to false.

  1. Create a rule that checks the state of TransView.Disable and disable the column you bound your button to if true. This will auto reverse if false

DisableFuncBtn

6 Likes