Bernhard P.

Results 147 comments of Bernhard P.

Just simply by using the [weekday plugin](https://day.js.org/docs/en/get-set/weekday). The internal representation (used e.g.for 'format()') is not affected by the locale. Therefore `dayjs().format('dddd')` will always return the desired output; even when the...

in the following code fragment ``` const firstDayOfWeek = dayjs.localeData() const weekdayNames = dayjs.weekdays() for (let i = 0; i < 7; i++) { console.log(weekdayNames[i]) } ``` instead of using...

I can reproduce the effect with your code. The problem is the way you activate the locale. I didn't completely find out, why the `dayjs.locale({...customLocale})` works in node but not...

I checked all locale files in the dev branch of dayjs and all contain a 'ordinal' function besides 'en' that gets a 'ordinal' function by the 'AdvancedFormat' plugin. Did I...

I'm pretty sure you have found the extensive [list of examples](https://swimlane.github.io/ngx-datatable/); for me the source code available for all examples often explain the features and parameters better then the detailed...

an example of the solution can be found on stackblitz: https://stackblitz.com/edit/ngxdatatables-selected-color?file=src/app/app.component.ts

any chance to include this minor pr in the next release? This pr fixes a small omission in pr #1651 - I forgot to adjust the text color, when the...

Let me take some arguments of @php4fan and create a list of what happens when we create a fullscreen control with different options: 1. by default the fullscreen button is...

I just tried to reproduce this effect on the [demo page](https://brunob.github.io/leaflet.fullscreen/), but I don't see it in my test environment (win10, current firefox or chrome). What configuration do you use?

> @BePo65 any chance you could update this PR soon? Or would you be fine if I tried to update it in a new PR? I added 2 tests for...