I want to define tag in TLD which will be look like this:
<zf:hashedInput path="id" />
How can I do implementation to create something like that:
<input type="hidden" id="id" name="id" value="1" />
<input type="hidden" name="id_hashed" value="someHash" />
I want to do it this way, because I want to check whether the given identifier has changed after submit form (was manipulated/modified in html).
Is this possible? How?