Bjarne Fyrstenborg

Results 474 comments of Bjarne Fyrstenborg

I have the same issue, when using Ajax and specifying `innerHTML` property, nothing is rendered when searching. I am using latest v1.27.0 It seems to be related to this issue:...

I think the `ucfirst` only capitalize first character in each string and return the rest as it is. https://github.com/a8m/angular-filter/blob/0bc1607f2468bf003a8419718f42f310b1445bd9/dist/angular-filter.js#L2081 ``` {{ 'foo bar baz' | ucfirst }} ```

I first tried without `title-tpl` attribute, but it then had an empty value and didn't seems to fallback to config settings, when the `search` cookie (an object) was empty. ```...

Sorry for the missing details. ``` Pickr-version (see Pickr.version): 0.6.5 Used Pickr-bundle (es5 or normal one): Normal bundle Browser-version: Google Chrome Version 75.0.3770.80 Operating-system: Windows 10 ``` I couldn't reproduce...

Thanks, not sure if there is an easy way to fix this for now, maybe specifying the (parent) container or in some other way make the overlay "relative" to the...

I also noticed this project which had a Chrome'ish color picker look https://narsenico.github.io/a-color-picker/ Maybe it would also be possible via a config option, theme or template to choose if the...

@Simonwep okay, maybe it would be possible in a future version to specify a custom template (from config or a path to e.g. a html view/template) and maybe an option...

I didn't notice if ServiceStack.Text was installed first time... the NuGet package was succesfully installed, but the ServiceStack.Text assembly was missing.. and wasn't build with my project, when only including...

I tried to install the NuGet package in a clean install: ``` PM> Install-Package MailChimp.NET Attempting to resolve dependency 'ServiceStack.Text (= 3.9.71)'. Installing 'ServiceStack.Text 3.9.71'. Successfully installed 'ServiceStack.Text 3.9.71'. Installing...

For now I use the following workaround: ``` sql.Where($"( upper({ReviewDto.TableName}.{SqlSyntax.GetQuotedColumnName("title")}) LIKE upper(@term) " + $"OR upper({ReviewDto.TableName}.{SqlSyntax.GetQuotedColumnName("name")}) LIKE upper(@term) " + $"OR upper({ReviewDto.TableName}.{SqlSyntax.GetQuotedColumnName("email")}) LIKE upper(@term) " + $"OR upper(convert(nvarchar(4000), {ReviewDto.TableName}.{SqlSyntax.GetQuotedColumnName("body")})) LIKE...