Understanding Javascript Function Parameters During Event Handling in R Package: visNetwork












0















Admittedly, I don't quite have the strongest grasp on JavScript, but it's used in this R package that I'm working with. I don't understand how function calls work during event handling, in this case. My code is below.



The way the package works, is that I have to give it a data frame of nodes (which must contain a column called 'id') and a data frame of edges (which must contain columns 'from' and 'to'). It'll print out an interactive network, that can be tweaked with Javascript.



In the code, visEvents() enables event handling, and 'selectNode' is one of the events (Please see here for more info https://rdrr.io/cran/visNetwork/man/visEvents.html).



library(visNetwork)

nodes2 <- data.frame(id = 1:3)
edges2 <- data.frame(from = c(1,2), to = c(1,3))

visNetwork(nodes2, edges2) %>%
visEvents(selectNode = "function(properties) {
alert('selected nodes: ' + properties.nodes);}",
dragEnd = "function() {
alert('finish to drag');}")


My question is, when a node is selected, and the function is called, what exactly is being passed to the function? What is 'properties', and why does it have a quality called 'nodes'? In the website linked above, the example uses a different event. The only difference between my code and theirs is I changed the 'select' event to the 'selectNode' event. But the code still works, so I'm confused about what that 'properties' parameter is supposed to mean.



Edit: I would appreciate it if someone could also let me know where I can read more about this. I don't quite know what this process is called so I can't even google it.










share|improve this question







New contributor




Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    Admittedly, I don't quite have the strongest grasp on JavScript, but it's used in this R package that I'm working with. I don't understand how function calls work during event handling, in this case. My code is below.



    The way the package works, is that I have to give it a data frame of nodes (which must contain a column called 'id') and a data frame of edges (which must contain columns 'from' and 'to'). It'll print out an interactive network, that can be tweaked with Javascript.



    In the code, visEvents() enables event handling, and 'selectNode' is one of the events (Please see here for more info https://rdrr.io/cran/visNetwork/man/visEvents.html).



    library(visNetwork)

    nodes2 <- data.frame(id = 1:3)
    edges2 <- data.frame(from = c(1,2), to = c(1,3))

    visNetwork(nodes2, edges2) %>%
    visEvents(selectNode = "function(properties) {
    alert('selected nodes: ' + properties.nodes);}",
    dragEnd = "function() {
    alert('finish to drag');}")


    My question is, when a node is selected, and the function is called, what exactly is being passed to the function? What is 'properties', and why does it have a quality called 'nodes'? In the website linked above, the example uses a different event. The only difference between my code and theirs is I changed the 'select' event to the 'selectNode' event. But the code still works, so I'm confused about what that 'properties' parameter is supposed to mean.



    Edit: I would appreciate it if someone could also let me know where I can read more about this. I don't quite know what this process is called so I can't even google it.










    share|improve this question







    New contributor




    Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      Admittedly, I don't quite have the strongest grasp on JavScript, but it's used in this R package that I'm working with. I don't understand how function calls work during event handling, in this case. My code is below.



      The way the package works, is that I have to give it a data frame of nodes (which must contain a column called 'id') and a data frame of edges (which must contain columns 'from' and 'to'). It'll print out an interactive network, that can be tweaked with Javascript.



      In the code, visEvents() enables event handling, and 'selectNode' is one of the events (Please see here for more info https://rdrr.io/cran/visNetwork/man/visEvents.html).



      library(visNetwork)

      nodes2 <- data.frame(id = 1:3)
      edges2 <- data.frame(from = c(1,2), to = c(1,3))

      visNetwork(nodes2, edges2) %>%
      visEvents(selectNode = "function(properties) {
      alert('selected nodes: ' + properties.nodes);}",
      dragEnd = "function() {
      alert('finish to drag');}")


      My question is, when a node is selected, and the function is called, what exactly is being passed to the function? What is 'properties', and why does it have a quality called 'nodes'? In the website linked above, the example uses a different event. The only difference between my code and theirs is I changed the 'select' event to the 'selectNode' event. But the code still works, so I'm confused about what that 'properties' parameter is supposed to mean.



      Edit: I would appreciate it if someone could also let me know where I can read more about this. I don't quite know what this process is called so I can't even google it.










      share|improve this question







      New contributor




      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Admittedly, I don't quite have the strongest grasp on JavScript, but it's used in this R package that I'm working with. I don't understand how function calls work during event handling, in this case. My code is below.



      The way the package works, is that I have to give it a data frame of nodes (which must contain a column called 'id') and a data frame of edges (which must contain columns 'from' and 'to'). It'll print out an interactive network, that can be tweaked with Javascript.



      In the code, visEvents() enables event handling, and 'selectNode' is one of the events (Please see here for more info https://rdrr.io/cran/visNetwork/man/visEvents.html).



      library(visNetwork)

      nodes2 <- data.frame(id = 1:3)
      edges2 <- data.frame(from = c(1,2), to = c(1,3))

      visNetwork(nodes2, edges2) %>%
      visEvents(selectNode = "function(properties) {
      alert('selected nodes: ' + properties.nodes);}",
      dragEnd = "function() {
      alert('finish to drag');}")


      My question is, when a node is selected, and the function is called, what exactly is being passed to the function? What is 'properties', and why does it have a quality called 'nodes'? In the website linked above, the example uses a different event. The only difference between my code and theirs is I changed the 'select' event to the 'selectNode' event. But the code still works, so I'm confused about what that 'properties' parameter is supposed to mean.



      Edit: I would appreciate it if someone could also let me know where I can read more about this. I don't quite know what this process is called so I can't even google it.







      javascript r event-handling






      share|improve this question







      New contributor




      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Jan 18 at 17:45









      Zuhaib AhmedZuhaib Ahmed

      12




      12




      New contributor




      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Zuhaib Ahmed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Zuhaib Ahmed is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54259048%2funderstanding-javascript-function-parameters-during-event-handling-in-r-package%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Zuhaib Ahmed is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Zuhaib Ahmed is a new contributor. Be nice, and check out our Code of Conduct.













          Zuhaib Ahmed is a new contributor. Be nice, and check out our Code of Conduct.












          Zuhaib Ahmed is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54259048%2funderstanding-javascript-function-parameters-during-event-handling-in-r-package%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Liquibase includeAll doesn't find base path

          How to use setInterval in EJS file?

          Petrus Granier-Deferre