Hello,
I am have currently added the following piece of JavaScript to the Column Resizing Event of a RadGrid I am using:
It works so far, but now I would also like the "tool tip", which appears during the resizing and displays the exact width of the column, to stop at 60px. Is it possible to access the tool tip and set it's text in the code above, and would that work out as intended?
Thanks in advance,
Robin
I am have currently added the following piece of JavaScript to the Column Resizing Event of a RadGrid I am using:
function ColumnResizing(sender, args)
{
if (args.get_gridColumn()._columnResizer._currentWidth < 60)
{
args.set_cancel(true);
}
}
It works so far, but now I would also like the "tool tip", which appears during the resizing and displays the exact width of the column, to stop at 60px. Is it possible to access the tool tip and set it's text in the code above, and would that work out as intended?
Thanks in advance,
Robin