Is it possible to do a tal:replace="whatever"
but maintain certain attributes of the element/tag?
For example, if you have the following:
<input type='text' value='test' name='hello' class='specialClass' tal:replace="customInput"/>
Is it possible to have your customInput
replace the current input but somehow also have the specialClass
class as well?
I can't tell if PHPTAL allows things like this or if I need to override some PHPTAL method for replacing...