Ben kodu birçok kez kullanmak gerekir, çünkü ben bir şablon kullanmak için js kodu bir parça yazdı Symfony 1.4 kullanıyorum, ve ben bir JS koymak istediğiniz dosyayı ayrıldı.
Ben kullanarak şablonuna JS ekledi:
<?php use_javascript('mi_js') ?>
This templates has some ajax calls that refresh zones of the view with renderPartial method. This new zones also use the JS code, so I need to add this code in the partial view. But if add:
<?php use_javascript('mi_js') ?>
in the partial, then it doesn't work. To get this work I have to put all the JS code in the partial, like:
<script type="text/javascript">/*<![CDATA[*/
$('.mi_class').click(function() {
var a = $(this).parent();
...
Ben dediğim gibi ben bunu yapmak istemiyorum.
Herhangi bir fikir ne yapabilirim? Bunu yapmak için herhangi bir şablon yöntemi?
Thanks in advance. Alejandro G.