David Grudl

Results 425 comments of David Grudl

I do not want to develop CSS parser, so the question is whether to start escaping whitespace globally in CSS is OK or not. The opposite problem https://github.com/nette/nette/issues/1512

ControlGroup is any general group of controls. I think that it is used only for graphic purposes.

Can you provide example code or send pull request?

Yes, it is known (and good) limitation.

There should be a condition that always makes it clear whether it is a class or a presenter, otherwise it could get awkward. For example, a class must contain at...

What about condition? ``` php $form->addSelect('country', 'Country:', $countries); $form->addSubmit('submit', 'Send'); $form['country'] ->addConditionOn($form['submit'], $form::SUBMITTED) ->setRequired('Choose country'); ```

Why you need to disable scope validation for select?