In the interests of saving space I am wondering if you can control the title mouseover in each grid row to include additional information, e.g. an address
SO THIS:
$col["name"] = "company";
<td role="gridcell" style="" title="XYZ Company" aria-describedby="list1_company">100</td>
COULD BECOME
$col["name] = "company";
$col["extrastuffonmouseover"] = "address";
<td role="gridcell" style="" title="XYZ Company – 123 High Street" aria-describedby="list1_company">100</td>
1 Answers
Your Answer