Pushpins in V4
I wanted to make pushpins without any icons using V4.
Something like I have around 100 Entities to be shown on a mab using Pushpins and I want to number them all. In V2 we were able to do this. We were able to use DIV tags instead of icons for Pushpins but V4 makes it necessary for us to use ICONS.
Is there any possible way out?
[353 byte] By [
MukundR] at [2007-12-26]
Ok.
I was able to figure out the way. The pushpin id we give to the pushpin can be used to get the dom object of the pushpin.
by
var pushpinDiv = documen.getElementById(pushpinID);
Now u can add something like
pushpinDiv.innerHTML += (A div which contains a number or something)
Then play with CSS to move that div on the pin.