I'm using Raphael for drawing some elements on a website. The elements include rectangle, line (path). I have given an id to the path element and trying to access it in the onclick event of that line. but when I do an alert of the id, nothing is visible. Following is the code snippet

function createLine() 
{ 
  var t = paper.path("M" + xLink + " " + yLink +"L" + linkWidth + " " + linkHeight);
  t.attr('stroke-width','3');
  t.attr('id','Hello');
  t.node.onclick = processPathOnClick; 
}

function processPathOnClick() 
{
    alert($(this).attr("id"));
}

Can anyone please tell me what is the problem with the above code. Any pointer will be helpful.

Thanks

link|improve this question

50% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Are you sure you don't want to write $(t.node).attr('id','Hello'); instead?

link|improve this answer
i tried that, but it didnt work – sgbharadwaj Dec 15 '10 at 21:14
1  
This should work, but I'm baffled as to why people use jquery to set the id of a node, lots of noise. Compare that to t.node.id = 'Hello' – Juan Mendes Dec 15 '10 at 21:16
@sgbharadwaj Huh, I just tried and it worked for me. Did you then rewrite to $(this.node).attr('id') in the handler? Anyway, like it's been said, you can just write t.node.it = "Hello" and alert(this.id) in the handler- – Zecc Dec 15 '10 at 21:27
feedback

Try setting the handler using jquery

function createLine() 
{ 
  var t = paper.path("M" + xLink + " " + yLink +"L" + linkWidth + " " + linkHeight);
  t.attr('stroke-width','3');
  t.attr('id','Hello');
  $(t.node).click(processPathOnClick);
}

function processPathOnClick() 
{
    alert($(this).attr("id"));
}
link|improve this answer
1  
Hi Juan, Setting the handler didnt work. I changed setting attribute to t.node.setAttribute('id',pathId); and accessing it to alert($(this).attr('id')); this worked – sgbharadwaj Dec 15 '10 at 21:02
Well, then that tells you that setting id on the Raphael object does not set it on the node. No need to use jquery to set the id. Your code would be much simpler by doing t.node.id='my-id', and your handler could just use alert(this.id) – Juan Mendes Dec 15 '10 at 21:15
Thanks that helped – sgbharadwaj Dec 15 '10 at 21:20
feedback

Try this:

function createLine()  { 
    var t = paper.path("M" + xLink + " " + yLink +"L" + linkWidth + " " + linkHeight);
    t.attr('stroke-width','3');
    t.id = 'Hello';
    t.node.onclick = processPathOnClick;
}

function processPathOnClick() {
    alert($(this).id);
    alert(this.id); // This should work too...
}

Basically you are creating a new property called "id" on your Raphael line instance variable "t". It's kind of hacking, in my opinion, but it does the trick just fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.