onClick Icon to add/subtract 1 from numeric entry

I'm making a downtime entry pop-up for an Operator console, and I'm still quite new to everything Ignition and coding. I know the numeric entry has a "spinner" option, but this console is going to be accessed more from a touch screen than with a mouse and I want to make this more user friendly. How do I get the + and - to function to add or subtract time from the numeric entry input?

What have you tried?

Simply taking the custom property that represents the minutes, and adding or subtracting 1 from that value and writing it back to the property should do what you want...

When I say I'm new to everything Ignition, I continue to surprise myself every time something works, because I had zero scripting experience going into this project.

So you don't have anything written at all? You might want to hit up Inductive University and review scripting, and Perspective before delving into this.

Essentially you are trying to build a script on those +/- buttons to increase the time. System Functions (System Functions | Ignition User Manual) are your friend - once you understand the different system functions available to you and look at the sample scripts, you can start building scripts to complete these desired functions.

As an example, your code could look something like this for the +:

	newTime = system.date.addMinutes(self.getSibling("DateTimePicker").props.value , 1)
	self.getSibling("DateTimePicker").props.value = newTime