Data Manipulation (Graph)
If using dataManipulation: true and graph.on('select'....), after click the edit button and then the close(x), the DIV will no longer update.
var options = {
stabilize: false,
navigation: true,
keyboard: true,
dataManipulation: true
};
graph.on('select', function(params)
{
if (params.nodes>0)
{
$('#info').load('".BASE_URL."/includes/ajax/getInfo.php?id=' + params.nodes );
}
});
Thanks in advance.