Skip to content
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

Add helper function to set DashTable columns to Dash for R #264

Open
HammadTheOne opened this issue Aug 10, 2021 · 0 comments
Open

Add helper function to set DashTable columns to Dash for R #264

HammadTheOne opened this issue Aug 10, 2021 · 0 comments

Comments

@HammadTheOne
Copy link
Contributor

This issue proposes adding a helper function set_columns to DashTable for R, similar to the df_to_list helper function, which would simplify the process of setting column names and id's when generating a data-table component.

With this change the syntax for a dashDataTable would go from before:

app$layout(
  dashDataTable(
    id = "table",
    columns = lapply(colnames(df), 
                     function(colName){
                       list(
                         id = colName,
                         name = colName
                       )
                     }),
    data = df_to_list(df)
  )
)

After:

app$layout(
  dashDataTable(
    id = "table",
    columns = set_columns(df)
    data = df_to_list(df)
  )
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant