I have an input_in_place_editor_tag() to edit the Group name:
- Code: Select all
echo input_in_place_editor_tag('name',
'main/editName?g='.$group->getId(),
array('cols' => 50, 'rows' => 1, 'save_text' => 'Save'));
It works well. But after an edit of the Group name, I want to update, via Javascript, two related elements on the page.
A perfect solution would be one that checks that the Group name has truly changed, and, if so, triggers a function that updates that other elements. There must be a clean way to do this with symfony?
Thank you for any help!
