Data validation

I am new to Kinetic and have a question or two. I have about 4 numeric controls and I want to validate and make sure the values in them are greater than zero. I want to do this on a button click. In 10.1.600 I could write some C# code and do this. Not sure how to do it now. Like I said, I want to validate all 4 values when button is clicked. Do any of you have any insight as to how I can accomplish this?

Call a function on button click that sends the value to be analyzed and return a bool with the result.

2 Likes

That works.