Page 1 of 1

JQSpinEdit to edit time

PostPosted: 26 Feb 2016 00:12
by Ricardo Muñoz
Hi,
It would be good be able to use JQSpinEdit to edit time in hours, minutes and seconds. Like TMS's AdvTimeEdit. I know, there is JQTimePicker but, does not have seconds and I think a spin edit it's a better alternative.

Regards

Re: JQSpinEdit to edit time

PostPosted: 26 Feb 2016 10:31
by Alexander Bulei
Hi Ricardo Muñoz,
JQTimePicker doesn't support seconds, but you can use the IWCGJQDateTimePicker with follow options:
Code: Select all
IWCGJQDateTimePicker1.JQTimeCustomLocal.TimeFormat := 'HH:mm:ss';
IWCGJQDateTimePicker1.OnlyTimePicker:= True;


Best Regards.

Re: JQSpinEdit to edit time

PostPosted: 26 Feb 2016 16:55
by Ricardo Muñoz
Hi Alexander,
Thanks, I did not know that component, but I'm looking for a component like SpinEdit when it is used with FormatOption.Type_ := ftDecimal (maybe ftTime in this case), ie, only numbers with up and down buttons and the use of the keyboard to increase or decrease hours, minutes or seconds.

Regards