Tagged Questions
0
votes
0answers
9 views
Get the autogenerated variable of Ivory Google Maps Bundle for symfony 2.3
today I start using the bundle ivory google maps and I find all so simple and very easy, but now i want to do some tries from javascript and for this i need the actual variable of the map, that the ...
0
votes
1answer
37 views
Controller requires a value for one parameter - Internal server error 500
Does implementing of AJAX with Symfony2 is so difficult as I see it now?
My goal is to implement a one-page application that displays a form for creating posts (each post has a post title and a post ...
0
votes
1answer
23 views
AngularJS update model on server with ng-change [on hold]
I am trying to figure out a way to submit to my restful webservice my updated models as the values are edited. Using a directive such as ng-change or ng-nlur, it will considerably increases the number ...
1
vote
1answer
30 views
Symfony2 - Change Page Content - Like Ajax
I am evaluating an ArrayCollection in my Template like this:
{% for article in articles %}
<li
{% if article.new %}
class="new"
{% endif %}
>{{ article.name|e ...
0
votes
1answer
37 views
Twig / Ajax Passing request with a Get methode
I'm trying to use the Get methode to pass an Ajax request.
I've added an alert on my function request to be sure of the link but I have no alert !
My code is:
This is my html.twig view:
<a ...
0
votes
1answer
32 views
Plotting a jqPlot in Symfony2
Hi and thanks for all your answers.
My problem is that I want to use the jqPlot library in my webapp which Im developing using the framework Symfony2.
Here goes my view:
<head>
{% ...
0
votes
2answers
46 views
Send jquery array to controller for processing in Symfony2
I'm trying to send an array of row id's to a controller in order to do a batch update, I think I already did the array part (i'm not good at jQuery, still learning) but I have no idea how to send to ...
0
votes
1answer
33 views
Include template file with different variable value on click - Symfony2/Twig
I'm quite noob when it comes to communicating between js files, controllers, templates and at all when in comes to js and ajax.
I have different links like this:
<a class="details" data-index ...
0
votes
2answers
20 views
Installing Javascript in symfony2
Hi Stackoverflow people.
Im trying to use a javascript graph in a test twig view. This is the view:
<h1>test</h1>
{% javascripts '@AcmeFooBundle/Resources/public/js/*' %}
...
2
votes
1answer
110 views
New forms - embedding a collection of forms - Symfony2
I'm doing the same as explained here: http://symfony.com/doc/current/cookbook/form/form_collections.html
But in my case I want to add new "tags" not manually with clicking on a link, but ...
-1
votes
1answer
90 views
jEditable returns the old values
When I edit the editable field gets a old value instead the new edit value.
For example in the first time, when I write something the $('#criTitulo').val() returns "undefined"; I have to refresh the ...
0
votes
2answers
74 views
Execute an action before redirecting to the template in the confirm dialog
The first field is the title of critic, the second field is the content of critic. When I write something in the title field automatically creates the object Critic in the db. In this situation I have ...
2
votes
2answers
440 views
Using Zurb Foundation and Symfony2
In my Symfony2 application, I am using the Zurb Foundation to built my layout on.
This keeps giving me headaches... the css works pretty well but the js often does not work. The files are loaded and ...
0
votes
0answers
36 views
authentification wsse symfony2 and javascipt (phonegap)
in the fact to use authentication wsse with symfony2 via rest,i adopt to develop my client with phonegap ,I already develop an algorithm that generates the token in the server part, but every time I ...
0
votes
1answer
41 views
Symfony2: jQuery plugins working in Firefox but not in Chrome
TL;DR - jQuery plugins are working in Firefox but not in Chrome. Same page, same files, same everything.
So I've got this twig page that extends another one. In the parent page jquery is being called ...