Marcel Overdijk

Results 207 comments of Marcel Overdijk

Actually I noticed this my self today using the Columns toolbar dropdown. The checkboxes generated in the dropdown to toggle the column visibility are generated like: ``` Name ``` and...

Just for reference if someone wants a quick but hack'ish solution. ``` $.BootstrapTable = class extends $.BootstrapTable { initToolbar() { super.initToolbar() $(`${this.options.buttonsToolbar} input[type='checkbox']`).addClass('form-check-input me-2') } } ```

Inspired on this X [post](https://x.com/yusukebe/status/1780538942032650337) I'm doing it like: ``` export type Env = { Variables: { prisma: PrismaClient; }, Bindings: { DB: D1Database; }, }; export const createApp =...

I was trying to go a bit further, to make some var available on the root and its child apps, but also some vars only on a child app only....

Is this issue regarding pages from data still relevant? The discussion seems to have stalled. Anyway, I used https://github.com/avillafiorita/jekyll-datapage_gen for Jekyll site in the past and maybe it could be...

I'm glad you like the idea and even targeting it for the next release! Indeed I was thinking of providing a Boolean as well if for some reason automatically is...

Maybe `orderProperties` is a better name as it is more consistent with `@JsonOrderProperties`?

Yes you are of course right it is `@JsonPropertyOrder`. So maybe something like below then: ``` @JsonIncludeProperties(order = OptBoolean.TRUE, value = { "id", "code", "name" }) public class Continent {...

Interestingly, (and I tested it with SQLiteStudio), this works in SQLite without errors: ``` -- Create the Author table CREATE TABLE Author ( author_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT...

I'm also trying to setup the GraphQL eslint but noticing some issues as well... From the [examples repo](https://github.com/dimaMachina/graphql-eslint/tree/master/examples) I e.g. tried: ``` import * as graphqlESLint from '@graphql-eslint/eslint-plugin'; { files:...