Paul Fitzpatrick
Paul Fitzpatrick
The use of `$` in formulas is supported by a code translation step that doesn't know about f-strings: https://github.com/gristlabs/grist-core/blob/e95b2154051d5a8393bb005af49565d08117106a/sandbox/grist/codebuilder.py#L35-L40 A workaround would be to use the pure python syntax of...
The locale settings in your account menu -> document settings can control that globally. I'm in the US, so I automatically get "1.44" style numbers, but if I want "1,44"...
Sorry @Razikus, Grist can't handle path prefixes yet. It could be achievable with some code change to add a small piece of middleware to consume the prefix, and to update...
I'll close since the need was met, a copy button is a nice-to-have but not a priority on our side.
Hi @Alic94, glad Grist has been working for you, and sorry you are having websocket troubles. I think nginx needs a little extra configuration to handle websockets across a reverse...
Yes, it is possible. We've been remiss in not creating a friendly documented endpoint for it, but you can see it done in a testcase here: https://github.com/gristlabs/grist-core/blob/4554de661eb7373d27814973907f471c95792f30/test/server/lib/DocApi.ts#L651-L661 POST to this...
Just to add because someone asked, to add a new column to a table you can do something like: ```sh curl -XPOST -H "Authorization: Bearer XXXXX" \ -H "Content-Type: application/json"...
Update: there is dedicated API support for creating tables and columns now: * [POST /tables](https://support.getgrist.com/api/#tag/tables/paths/~1docs~1%7BdocId%7D~1tables/post) * [POST /columns](https://support.getgrist.com/api/#tag/columns/paths/~1docs~1%7BdocId%7D~1tables~1%7BtableId%7D~1columns/post)
Thanks for the suggestion! I did consider something similar. In my actual case, the specific domain families are not available to the code, so the middleware needed to do a...
I'd now edit: > As an example of when this is useful, imagine serving a single app from `*.foo.com` and `*.bar.com`, with the cookie domain being `.foo.com` for the `*.foo.com`...