Rhansontable table value changes

In Rhandsonbtable changes, we make use of below

input$table$changes$changes[[1]][[3]]  #for old values
[1] 0

input$table$changes$changes[[1]][[4]]   #for new values
[1] 5

Above is good. But in some case, I change many rows in a dataframe and it only captures the last change made. And also, it captures irrespective of columns.

Is there a way to get all the changes made (old and new)

For example

table   #initial dataframe (rhandsontable)
ColA   ColB    ColC
1       A        B 
2       C        D
3       E        F
First change

table   #initial dataframe (rhandsontable)
ColA   ColB    ColC
1       A        B 
2       C1       D1      # changed from D to D1 and C to C1
3       E1       F1      # changed from E to E1 and F to F1
Expected output (some thing like below)

input$table[[2]][[2]]  
 C   # old value
input$table[[2]][[2]]  
 C1   # new value

input$table[[2]][[3]]
D   #Old value
input$table[[2]][[3]]
D   #New value

input$table[[3]][[2]]  
 E   # old value
input$table[[3]][[2]]  
 E1   # new value

input$table[[3]][[3]]
F   #Old value
input$table[[3]][[3]]
F1   #New value

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.