How do I capture the mouse event, in this case when using rhino? #584
-
This is an example where the column the mouse passes over in the table is captured.
In rhino version:
Questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @Roberto-Parra , In the Rhino code, we need to address the namespace issue in the
|
Beta Was this translation helpful? Give feedback.
Hello @Roberto-Parra ,
In the Rhino code, we need to address the namespace issue in the
hovered_column
variable within the Shiny module, you'll need to ensure that it is properly scoped with the NS() function. Here's a detailed correction of your code:No change is needed in the UI function, as it correctly uses namespacing.
Update the server function to use
session$ns
: Ensure that all input and output IDs within the server function are scoped to the module instance.For example,