Hi,

When I switched the version of Tapestry from 5.2.6 to 5.3.8 I saw somes changes 
in the source code of the html page.

In my tml file in eclipse I've this code :

<input t:type="textfield" t:id="typeFacture" id="typeFacture" 
t:validate="required" class="typeFacture" onchange="onTypeFactureChanged();" 
onblur="hideTfDropDown();" size="30" maxlength="30" 
t:clientEvent="custom:change" t:event="typeFactureChanged"/>

When I deploy my application in Tapestry 5.2.6 I have this code in the browser 
(source code) :

<input maxlength="30" onblur="hideTfDropDown();" Autocomplete.value="" 
class="typeFacture" onchange="onTypeFactureChanged();" size="30" 
id="typeFacture" name="typeFacture" type="text">

And this is the same code but with Tapestry 5.3.8 (nothing change in the 
tml...) :

<input id="specialiteOS" name="specialiteOS" autocomplete="off" type="text">

So, somes portions of the code have disappeared (all of the javascript 
functions..) but I don't know why ?

I didn't find any reference to this problem in the release of the 5.3.

Thanks,

Reply via email to