Adam Štěpánek

Results 14 issues of Adam Štěpánek

A migration of our Azure Devops release pipeline. Please squash-merge. **TODO LIST** * NuGet packages * [x] Build packages * [x] Sign packages * [x] Upload to the internal feed...

Currently, DotVVM reports serialization issues only if an instance of a type that cannot be serialized is sent to the client. This means that a lot of issues are discovered...

Specifically, commands from inside a markup control in a HierarchyRepeater ItemTemplate fail. See the `WithMarkupControl` sample in the `tests/hierarchy-repeater` branch.

bug
Controls

Consider a simple composite control: ```csharp public class TestStatusIcon : CompositeControl { public static DotvvmControl GetContents(ValueOrBinding testStatus) { var icon = new HtmlGenericControl("i"); icon.AddCssClass("fas"); icon.CssClasses.Add("fa-times", testStatus.Select(t => t == TestStatus.Failed));...

bug

Although #775 has just been merged, SeleniumGenerator is far from being finished. I create this issue to track its progress.

enhancement
Framework
testing

We should name dotproperties more consistently. Current state ------------- The names we currently have use one or more of the following conventions: Convention | Example --------------------------|--------------- Noun | `TextBox.Text` Noun...

Currently validationErrors are only cleared in the beforePostback event and that is not enough. Imagine you have a modal dialog with a few form controls in it. The modal dialog...

### Version 2.0.3 ### Platform Windows ### What steps will reproduce the bug? By following the button sample at https://lume.land/docs/core/components, I end up with `index.jsx` and `_components/button.vto` (see [lume-components.zip](https://github.com/lumeland/lume/files/13939605/lume-components.zip)). ###...

bug

Model scenario: A website has a value binding that looks like `{value: Resources.SomeLocalizedMessage}`. The current culture is set to the culture of the user. Expected: A correctly localized message is...