Richard Ejem
Richard Ejem
Current style of providing example values through annotations have some serious limitations: - As the examples are tightly bound with the schema definition, it is not possible to use schema...
## 🚀 Feature request Example: ``` type UserId = '1' | '2' | '3'; declare const users: Record; const filteredUsers = pipe(users, record.filter(...)); ``` ### Current Behavior Above example produces...
Calls to ~`setZoom`~ functions that change scale (`setZoom`, `fit***` etc.) do not emit `zoomed` and `zoomed-end` events. For me, I expect zoom events to fire regardless of what triggered the...
When canvas is not rendered at [0, 0] in document.body and no interaction manager is supplied, we need to subtract containing div position from mouse event coordinates.
Common interface declaring `getControls()` would be useful for form renderers including DefaultFormRenderer. Example: ``` interface IControlContainer { /** @return IControl[] */ public function getControls(); } ``` then, DefaultFormRenderer::renderControls() could look...
See test that confirms the failure: http://pastebin.com/Xwpha0v2 my suggestions: - Nette\Forms\IControl should extend Nette\ComponentModel\IComponent (shouldn't even break BC of any existing controls, because $form->addComponent() receives only IComponent anyway) - wouldn't...
Currently, the button clicked to submit the form is not preserved and therefore not included in the request sent to server, because this package calls `event.preventDefault`, then, if the form...
https://github.com/formapro/JsFormValidatorBundle/blob/b85214c22dcc5f2cbb3b6ce46582695a31a4cb6a/Resources/public/js/constraints/True.js#L7 Wasn't this meant to be `SymfonyComponentValidatorConstraintsIsTrue` ?
…d to Ajax:checkUniqueEntity
Currently, the submit button is not preserved because this package calls `event.preventDefault`, then, if the form is valid, sends `form.submit()`. I proposed a fix in #131 , so please take...