Alt tags for Multiple Images in Cells

I’m filling a cell with a number of images to represent actions and need to have tool tips/alt text show for each image independently.



Right now it shows each image with a blank Tool Tip.



<?xml version="1.0" encoding="utf-8"?>

    

        Type

        Date

        Name

        Address

        Prop Owner

        Phone

        Status

        Score

        Actions

    

        

        associate

        2008-08-08

        DOE, JOHN M

        

            <![CDATA[
                
                111 MAIN ST
LOS ANGELES, CA 90033
            
            ]]>

        

        


        (213) 555-1212

        active

        

            <![CDATA[
                275
Provided by source Name Here            
            ]]>

        

        

            <![CDATA[
             Capture notes    
                Edit / Change Contact Information
                Search Web for this contact
                Assign this address for processing            
            ]]>

        

    

You can use onMouseOver event to block tooltips of grid, and show native ones.

grid.attachEvent(“onMouseOver”,function(id,index){
if (index == 7 || index == 8 ) return false;
return true;
})