What to do if the cell contents are too long to be fully displayed.
It would be nice if the mouse moved to the cell to automatically display all the text content.
Here are two ideas to add a title property to the corresponding node, the value is the content of the node to add events, moved to the cell with a ToolTip display content method one
Add Title property, value is text content
Find the corresponding node first
Can be based on one of these classes to locate Datagrid-cell
Suppose the ID of this DataGrid is DG
So write it.
The. Parent () is used here because the cell is not inside the #dg
$ (' #dg '). The parent (). Find ('. Datagrid-cell '). each (function () {$ (this).
attr (' title ', $ (this). html ());
});
If you just want a column with a hint, that's okay.
$ (' #dg '). The parent (). Find (' td[field=itemid]. Datagrid-cell '). each (function () {
$ (the). attr (' title ', $ (this). HTML ());
});
Method Two
Don't write it first.