Standa Lukeš
Standa Lukeš
To simplify configuration debugging, we should add a page that will dump the contents of DotVVM Configuration in a readable way. Most importantly, it should contain the items which are...
It would be intuitive (at least for me) if these attributes also worked on parameters in constructor, not only on properties. The main advantage from properties is that I can...
When a server is running in debug mode and the developer changes (or removes) the `@baseType` the compilation breaks and server has to be restarted.
It should be possible to render simple controls at compile time to simple literals. We should implement this at least for HtmlGenericControl and have interface where anyone could connect their...
We can probably skip building of control that certainly don't interact with anything and don't contain command binding -- HtmlGenericControl and Literal should be save to skip and are the...
When property has private or no setter it is not transferred to server like if `[Bind(Direction.ServerToClient)]` was applied. This is correct behavior and can be useful in many situations, but...
I could be cool to have an integration between Razor and DotVVM, so you could host a DotVVM user control in a Razor view or vice versa, or be able...
As pointed out by JonV at [StackOverflow](https://stackoverflow.com/questions/54301265/dotvvm-rest-api-automatic-refresh), there should be a way to disable the automatic update of all GET requests when POST is made.
see the `AutomaticIdGeneration_Repeater` test ```html ... ``` produces multiple `mySpan_sep` elements without trying to avoid the ID conflict. It is the same in client-side and server-side rendering.
I'd expect that postbacks in different queues can run in parallel, but it's not the case, since we drop every commit that's not from the last postback. This line makes...