Mike Bender

Results 61 comments of Mike Bender

@rbasralian would like to make sure there is an option to disable/enable auto format on save.

Potentially related Spectrum issues: https://github.com/adobe/react-spectrum/issues/4728 https://github.com/adobe/react-spectrum/issues/4016

Moved the "Copy Cell Unformatted" to it's own ticket #919

We do tooltips for URLs as a precedent. ``` from deephaven import empty_table t = empty_table(100).update("x=`https://www.example.com/` + i") ```

Core side merged initial PR: https://github.com/deephaven/deephaven-core/pull/5532 Should be able to get the file delimiter via the `file.separator` config path.

@mattrunyon has done something similar with formatting for UITable: https://github.com/deephaven/deephaven-plugins/pull/950 Would need to do something similar in IrisGrid/IrisGRidTableModelTemplate.

We should also pass the `type` through to the `WidgetView` component: https://github.com/deephaven/web-client-ui/blob/77bea7d2badbc37eb3259a85873d6f900a07be14/packages/plugin/src/WidgetView.tsx#L25 Right now if you have a view registered for multiple types (e.g. providing multiple values to the `supportedTypes`...

This is an issue as far back as Jackson: 1.20221001.343 Tested with the Groovy snippet: ``` t = emptyTable(100000).update("X=currentTime() + ii", "Y=ii", "Z=Y*2") plotXyScatter = plot("Y", t, "X", "Y").plotStyle("scatter").twinX().plot("Z", t,...