Regex not working in ui_table

I'm fighting with one issue with the ui_table.
I have a regex to filter the time in hh:mm style (00:00 - 24:00)
^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$

But when I insert it to ui_table to validate it doesn't work.
The error is with the : because when I use this regex: ^([0-1]?[0-9]|2[0-3])a[0-5][0-9]$
it works perfecty. But writing the time like 08a30 is not the same like 08:30.

I created a example:

[{"id":"808788e4.8ffe98","type":"ui_table","z":"f6f2187d.f17ca8","group":"b070d416.db371","name":"","order":0,"width":"10","height":"16","columns":[],"outputs":1,"cts":true,"x":730,"y":1400,"wires":[[]]},{"id":"315a3af5.cf5a26","type":"change","z":"f6f2187d.f17ca8","name":"","rules":[{"t":"set","p":"ui_control","pt":"msg","to":"{\"tabulator\":{\"dataTree\":true,\"dataTreeStartExpanded\":true,\"headerSort\":false,\"columns\":[{\"title\":\"Working\",\"field\":\"nice\",\"width\":75,\"validator\":[\"regex:^([0-1]?[0-9]|2[0-3])a[0-5][0-9]$\"],\"editor\":\"input\"},{\"title\":\"notWorking\",\"field\":\"error\",\"width\":75,\"validator\":[\"regex:^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$\"],\"editor\":\"input\"}]}}","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":500,"y":1400,"wires":[["808788e4.8ffe98"]]},{"id":"81c28860.bd0298","type":"inject","z":"f6f2187d.f17ca8","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":true,"onceDelay":0.1,"topic":"","payload":"true","payloadType":"bool","x":290,"y":1400,"wires":[["315a3af5.cf5a26"]]},{"id":"3dcc3d1b.6be382","type":"inject","z":"f6f2187d.f17ca8","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":"0.6","topic":"","payload":"[{\"_children\":[{\"nice\":\"22a00\",\"error\":\"22:00\"}]}]","payloadType":"json","x":360,"y":1340,"wires":[["808788e4.8ffe98"]]},{"id":"b070d416.db371","type":"ui_group","name":"Table","tab":"cd895ba5.a7168","order":1,"disp":true,"width":"14","collapse":false},{"id":"cd895ba5.a7168","type":"ui_tab","name":"newTable","icon":"dashboard","disabled":false,"hidden":false}]
1 Like

I tried it and I have the same problem.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.