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

Cannot update higher index rows after updating lower index rows #9

Open
stanstrup opened this issue Jul 12, 2014 · 1 comment
Open

Comments

@stanstrup
Copy link

This will only update the first row.

for(i in 1:length(var_rows)){
  updateTableStyle(session, "tbl", "invalid", var_rows[i] , var_cols )
}

While this works:

for(i in length(var_rows):1){
  updateTableStyle(session, "tbl", "invalid", var_rows[i] , var_cols )
}

The problem is that if a new selection is made only the first row can ever be selected.
And how do you "reset" the selections?

@arupnathdaw
Copy link

I can not re-render the table with any no of rows.

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

2 participants