You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In our application, we want to format displayed numbers in cells. Since we don't know a-priori which columns will have number values, we do this with by setting defaultColumn:
unfortunately, this means that we remove the existing default behaviour, instead of the intention, which would be to extend it. To allow doing either, it would be nice if the current defaultColumn settings could be exported.
Describe the solution you'd like
export const defaultColumn = ...;
Describe alternatives you've considered
extendDefaultColumn prop, which extends instead of overwriting
type of eds defaultColumn could be (context, currentDefaultoptions) => displayValue instead of (context) => displayValue
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In our application, we want to format displayed numbers in cells. Since we don't know a-priori which columns will have number values, we do this with by setting defaultColumn:
unfortunately, this means that we remove the existing default behaviour, instead of the intention, which would be to extend it. To allow doing either, it would be nice if the current defaultColumn settings could be exported.
Describe the solution you'd like
export const defaultColumn = ...;
Describe alternatives you've considered
(context, currentDefaultoptions) => displayValue
instead of(context) => displayValue
The text was updated successfully, but these errors were encountered: