if (e.Row.RowType == DataControlRowType.DataRow)
{
foreach (TableCell cell in e.Row.Cells)
{
string s = cell.Text;
if (cell.Text.Length > 10)
cell.Text = cell.Text.Substring(0, 10) + "....";
cell.ToolTip = s;
this should be converted to jquery and my page is..
how to convert using jquery css tooltip function to limit the character.
Loading
Afzaal Ahmad ZeeshanPosted Mar 26, 2015, 10:42 AM
In jQuery section, you should use the ID of the element inside the selector, $("selector"). Then manipulate it. Direct name usage is not allowed. JavaScript (based of jQuery) would always throw exceptions, for either undefine or wrong token.