Please, help me to review the following script where I am not able to fix a date I choose from dropdown calendar, it is getting back to the initial date ( in this case , it is a current date):
Hi @firuz.safaev. Without seeing more of your code, I assume you have a calendar widget in your app that I'll assume has the id, my_calendar_id. In the code you shared, the Date of transaction is being set to the current date via Sys.Date(). To reflect the value selected in the calendar widget, try making the following update.
data <- data$df1010 %>%
mutate(Date of transaction = input$my_calendar_id) %>%
head(2)