-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Augment the table control's columns capabilities #1439
Comments
ColumnDesc interface definition is here |
can i take this? |
@pravintargaryen Our core maintainer team has not reviewed this issue. We will let you know as soon as possible if we want to implement it. |
CAN U ASSIGN IT TO ME I WANT TO CONTRIBUTE TO IT |
You have been assigner to another issue already @KunjShah95 |
YOU ARE ASSIGNED HERE ALREADY: #1248 |
@AlexandreSajus Can you assign me this issue? |
Is the issue located in table.tsx or tablefilter.tsx |
New Quest!A new Quest has been launched in @Avaiga’s repo. Some loot has been stashed in this issue to reward the solver! 🗡 Comment ⚔️ When you submit a PR, comment Questions? Check out the docs. |
@quest-bot embark |
@Shaik-mohd-huzaifa has embarked on their Quest. 🗡
Questions? Check out the docs. |
This issue has been labelled as "🥶Waiting for contributor" because it has been inactive for more than 14 days. If you would like to continue working on this issue, please add another comment or create a PR that links to this issue. If a PR has already been created which refers to this issue, then you should explicitly mention this issue in the relevant PR. Otherwise, you will be unassigned in 14 days. For more information please refer to the contributing guidelines. |
This issue has been unassigned automatically because it has been marked as "🥶Waiting for contributor" for more than 14 days with no activity. |
Description
The columns property of
table
can be set to a dictionary where, for every column, one can customize:This issue is about considering adding support for all indexed properties of the table:
group_by
, set to the name of the aggregation function, would indicate the table would perform an aggregation on this column using this function;style
, if set to a string, would add it as a CSS class to this column's cells;tooltip
, if set to some text, would be the text used when the column is hover over;filter
, if set to True, allows for filtering on this column;nan_value
, if set to some text, would have the table use that as the representation for a 'no value' cell;editable
, if set to True, allows for editing this column;lov
could be set to a list of string values that are allowed for this column.width
could be set to force the width of this column.Setting
columns[<column_name>].<property>
would overwrite a potentialtable.<property>[<column_name>]
.Note that we may also want to add the indexed
title
property totable
... for homogeneity.Acceptance Criteria
Code of Conduct
The text was updated successfully, but these errors were encountered: