Question 1 : How to auto display dot dot dot value when mouse over?
Question 2 : How to auto display full header text when user manually adjust the header size to smaller?
@Stanley: Regarding your first question, have you set any tooltips at all? Here is the code that enables tooltips and sets the displayed text to the Value of the cell:
GridDataCellElement dataCell = sender as GridDataCellElement;
if (dataCell != null)
{
e.ToolTipText = dataCell.Value.ToString();
}
}
There are two options to resolve the second question:
1. As Smith Lo suggested, set the TextWrap property of the column.
2. Subscribe to the ViewCellFormatting event of RadGridView and set the TextWrap property only of the header cells. Here is a sample snippet: