Off topic:Display JSON file contents with Cytoscape.js by selecting from a dropdown menu
0
0
Entering edit mode
7.3 years ago

I am trying to write a code where the end user can select a file from a drop down menu and that file would be displayed as a network with Cytoscape.js. My code was fetching a JSON file from the server and displaying the file as a network with Cytoscape but it is not working with a drop down list. I am fairly new to AJAX and Jquery. Any help would be appreciated.

   
   <html>
   <head>
   jQuery Test Project
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script src="&lt;a href=" https:="" ajax.googleapis.com="" ajax="" libs="" jquery="" 3.1.0="" jquery.min.js"="" rel="nofollow">https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  <body>
 
<style> body { font: 14px helvetica neue, helvetica, arial, sans-serif; } #cy { height: 60%; width: 60%; position: absolute; left: 0; top: 0; } </style>
<script type="text/javascript"> </script> </head> <body> $(function() { var test; $.get( 'cy', function( data ) { $('#cy').cytoscape({ file_name = $("select").val(); }); $('#cy').load(file_name); style: cytoscape.stylesheet() .selector('node') .css({ 'content': 'data(name)', 'text-valign': 'center', 'color': 'white', 'text-outline-width': 2, 'text-outline-color': '#888' }) .selector('edge') .css({ 'target-arrow-shape': 'square' 'width': 5, 'line-color': '#ddd', }) .selector(':selected') .css({ 'background-color': 'black', 'line-color': 'black', 'target-arrow-color': 'black', 'source-arrow-color': 'black' }) .selector('.faded') .css({ 'opacity': 0.25, 'text-opacity': 0 }), elements : JSON.parse(data), ready: function() { window.cy = this; cy.elements().unselectify(); cy.on('tap', 'node', function(e) { var node = e.cyTarget; var neighborhood = node.neighborhood().add(node); cy.elements().addClass('faded'); neighborhood.removeClass('faded'); }); cy.on('tap', 'edge', function(e) { if (e.cyTarget === cy) { cy.elements().removeClass('faded'); } }); } }) }) });
javascript ajax jquery proteomics cytoscape • 3.9k views
ADD COMMENT
This thread is not open. No new answers may be added
Traffic: 2453 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6