Stefan Gabos

Results 78 comments of Stefan Gabos

i gave up shortly after because i didn't have time to focus more on it but i think it is possible to win and it doesn't have to do with...

I am open to suggestions - even better, I accept pull requests! :) Having the code inside a require.js module makes everything too particular, but maybe an extra property given...

I'll look into it, just didn't have yet the time. I am using this with Bootstrap for years now and forgot to check how the changes affect the standalone templates...

I am not sure what you are asking, but you can get the rendered form as a variable like `$output = $form->render('', true);`

Try disabling CSRF ```php $form->csrf(false) ```

Can you please email me the code for generating that monstrosity of a form? :) I'll definitely have a look once I can reproduce the issue. It’s most likely something...

You forgot to attach the file. I am very interested in making the library better!:)

This is not really a solution...I'm going to look more into this, just to make sure that there are no faults in the code

Can you please give me a real-life example where this is causing problems? I've used this only for adding multiple classes to an element, but having the same class added...

hey, thanks for letting me know! i think the easiest fix is to change ```php if (!call_user_func_array(array(&$this,$actions[0]), array_slice($actions, 1))) { ``` to ```php if (!call_user_func_array(array(&$this,$actions[0]), array_values(array_slice($actions, 1)))) { ``` that...