Jakub Kupsik

Results 20 comments of Jakub Kupsik

The 'additional data' field occasionally contains "appVersion" and "appBuild" information, but only on 'Loaded App' entries.

One workaround that I have used, which works with `queryFn `, is to add this to the column's ColumnSpec: ```ts agOptions: { suppressKeyboardEvent: ({event, api}) => { if (event.key ===...

Client has complained that the "Is blank"/"Is not blank" filter options present in the custom filter on the grid column filter do not work as an "is empty"/"is non-empty" when...

- Fixed bug where opening the grid filter for a tags column would cause error + clearing of that field. - Fixed bug where selecting 'is (not) blank' for a...

Toolbox PR: https://github.com/xh/toolbox/pull/712/commits

This fixes an issue with typescript and this format: ``` editor: props => selectEditor({ ...props, // There is absolutely no typescript type checking here inputProps: { options: ['A', 'B'] }...

Ready to be merged.

Note, ts will complain if you specify: ```editor: props => selectEditor(props)``` due to missing `inputProps`. I think this is fine because we support the syntax: ```editor: selectEditor``` Alternatively, we can...

I have a different way that has it working: ``` editor?: FunctionComponent | ColumnEditorFn; ``` with the trick this time being: ``` export type ColumnEditorFn = (props: ColumnEditorProps, nil?:any) =>...

I'm thinking about parsing a small set of words into a relative date: [`This` (alias for 0), (`a numerical value`)] [`Day(s)`, `Month(s)`, `Year(s)`] [`Ago`, `Out`, (can be omitted only for...