Hi,
I have a form where a model is edited. I need to manipulte the results that come from the model. Example: From the model I get '2000-1-1' and I need to convert it to '01.01.2000' and insert it to the corresponding input value. How can I do that?
In other words: I get this now from model:
<input type="text" value="2016-07-31">
I need this:
<input type="text" value="07.31.2016">
Thanks for any help!