This tutorial shows how to create a basic Mdi window application with a menu using Qt Creator. It was done along with a mirror github repository. You can browse the tutorial code there step by step. Each commit is mentioned in the tutorial. Create a new project which will be called QtMdiTutor[...]
Hello,I am having issues with the autocompleter widget. It used to work but not anymore and I REALL[...]
I need to add a new field in contact details with a text area. I tried to edit the files suggested in orange HRM forum (http://forum.orangehrm.com/viewtopic.php?f=22&t=9785). I am getting an error exception 'InvalidArgumentException' with message 'Widget does not exist. Plea[...]
I cannot find the strings "Choose file" and "No file selected" in an upload input form widget, so I can translate them. Where are they located? Or are they embedded into php and not in symfony2 ?
I have a problem with sfWidgetFormDoctrineChoice and sfValidatorDoctrineChoice. No matter what I do on this, I get an 'Invalid' error when the form is saved. This is a 'recipe' application with Parts on the shelf, Ingredients to create another Part, Processes to mix the Ingredient[...]
I don't know why, but I remembered that when you have a symfony form with required fields not rendered, the isValid function do not check for them. I mean it only check if the widget got a value when you use it. And it seem in my current project that it is wrong. Is there a setti[...]
I have a problem with a sfWidgetInputCheckbox. It do not save false in the database when the checkbox is unchecked. In my schame my field is a boolean, and i don't have bug in the value displayed. Set the default value like this : $this->setDefault('status', false); don't work[...]
Use case I am developing a CMF on top of Symfony2. One of the features will be the support of "widgets": an possibility for end users to add small 'blocks' or 'modules' to a page. Examples: A small login form A list of products Some photo's from a gallery A shopping cart The id[...]
I have in my Form class: public function configure() { $emb = $this->getEmbeddedForms(); foreach($emb as $key => $form) { unset($form['backup']); } } But this not working - not unset. In $emb i have: oneForm twoForm In oneFor[...]
Hello,I'm looking for a way to rendre each widget dynamicly according to his type.For example, a sf[...]