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
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)
)
)
The text was updated successfully, but these errors were encountered:
This issue proposes adding a helper function
set_columns
to DashTable for R, similar to thedf_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:After:
The text was updated successfully, but these errors were encountered: