Alexander Butenko
Alexander Butenko
@MYeager1967 After 1 year of usage, it seems that my rs485 usage consists of just switching pump to 3500/1500 speeds . If you just want to have fun -- you...
you can change this behavoir with attributes. "pattern" => "\d{2}.\d{2}.\d{4}", "placeholder" => "DD.MM.YYYY". But i think its good to implement presets for this. Lets keep this issue opened.
one more good point. i need to cover that in the documentation
can you please reset your session/change form id and try again? I just tried to reproduce and cant reproduce that. ``` $form = Form::open ("test", $values, ['view' => "SideBySide$version"]); Form::Hidden...
oh, i thought that validation were failing. let me see the value.
in firefox + your element configuration im getting a valid status with a value '01.01.2001'. in chrome im getting a prompt to enter date in mm/dd/yyyy format according to my...
i think a way to is to change type=date to type=input as in reality only chrome 'supports' it. ``` diff --git a/PFBC/Element/Date.php b/PFBC/Element/Date.php index 45ed2f0..89e027f 100644 --- a/PFBC/Element/Date.php +++ b/PFBC/Element/Date.php...
i just commited a correct validation for a Date. Im not sure what to do with a firefox users. seems The best way is to stick with a US format...
from another hand, we can try to rewrite the value in validation function to the needed format. that would require to introduce new attribute 'format' ``` Form::Date ("Geburtsdatum:", "gebdat", array("required"...
``` php Form::Date ("Geburtsdatum:", "gebdat", array("required" => 1, "shortDesc" => "Bitte das Eingabeformat beachten.", "format" => "EU", "placeholder" => "TT.MM.JJJJ", "title" => "TT.MM.JJJJ (Beispiel: 11.05.1975)")); ``` ``` php Form::Date ("Geburtsdatum:",...