This is a migrated thread and some comments may be shown as answers.

[Solved] Detecting start of Column resizing

1 Answer 107 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Sebastian S
Top achievements
Rank 1
Sebastian S asked on 31 Aug 2011, 05:01 AM
Is there a way to detect when a grid column has started (but not stopped) being resized?

Cheers,
Sebastian

1 Answer, 1 is accepted

Sort by
0
Sebastian S
Top achievements
Rank 1
answered on 31 Aug 2011, 05:20 AM
Never mind. Found out how using jquery:

$('#Grid1 .t-header').mouseup(function() {
			alert('resizing?');
		}).mousedown(function() {
			alert('resized?');
		});
Tags
Grid
Asked by
Sebastian S
Top achievements
Rank 1
Answers by
Sebastian S
Top achievements
Rank 1
Share this question
or