Electro Type
Electro Type
Related issue here. I have a Typescript project where the `.js` files are generated beside their associated `.ts` files. The commands work, but the global help show each command _two...
In case it helps someone one day, I found an ugly workaround to get the executed command, so I can display its help in case of a validation error: ```...
@twright-msft Would it be possible to tweak [your Dockerfile](https://github.com/Microsoft/mssql-docker/blob/master/linux/preview/examples/mssql-agent-fts-ha-tools/Dockerfile) with FTS to use SQL Server 2014 instead of 2017? I'm not sure what I should change! EDIT : Oh well......
Pebble is the main templating engine in Spincast Framework: https://www.spincast.org/documentation#templating_engine A big ❤️ from us!
In the framework I work on, I use Pebble to output informations if fields from a submitted Form contain errors. For example, If "_myForm.user.company.title_" is invalid, I want to ouput...
Thanks for that reply. I understand your concerns, but I don't see how it would break any backwards compatibility or be confusing. You simply do: ` if (filter instanceof AttributeNotFoundExceptionHandler)...
I see... At least, don't make `DefaultFilter` final please! ;-)
I still think that libraries and frameworks should ideally have the possibility to create functions and filters that are able to manage non existing attributes, without a special syntax... And...
I now have a [live example](https://www.spincast.org/documentation#forms_validation_filters) of what I'm talking about. Have a look at the first filter, `validationMessages()`, for example. I would have prefered to use _functions_ there, but...
I do something similar to this using a plain function. In the function, I use a `PebbleEngine` to render a "fragment" and use the result to generate the result of...