David G. Simmons

Results 28 comments of David G. Simmons

I have a "minimum viable product' plugin for doing Model I18N that works, but ... it would be *much* better if we included the `` extension in the underlying `moddle`...

I believe it's a BPMN standard extension now, not a vendor extension. What so far keeps me from using it is that it simply doesn't work to add it as...

Yes. That's what this is about.

> FYI @andreasgeier => let's collect this as Feedback. > > The toolbar was delibaretly removed with 5.0 (see some reasoning in the [blog post](https://camunda.com/blog/2022/01/camunda-modeler-5-0-0-alpha-0-released/)). I understand, though I still...

Is this resolved? Can we address it or close it please?

Calendar.init When - View changes (day, week or month) - View moves (left or right) - Manually called by you And inside the init() function you check what the view...

For setting `env` variables, it would be super handy to have a way for users to enter their values. I use: `>> export ENV_VAR=insert_your_value_here` But of course that opens a...

I wonder if this will work: ```js declare module 'nfc-pcsc' { import { EventEmitter } from 'events'; interface NfcPcsc extends EventEmitter { start(): Promise; stop(): Promise; listDevices(): Promise; open(device: string):...

Here's how I'm setting the foreground and background of the suggestions: ```js {loading && Loading...} {suggestions.map((suggestion) => { const style = suggestion.active ? { backgroundColor: "#2C74B3", cursor: "pointer" } :...