|
|
To identify the column ID of the tabular form, just simply use this javascript event on the Element Attributes of the needed columns.
onmouseover="alert(this.id);"
You can definitely choose a different Javascript event you're comfortable with.
This tip is useful especially when column order has been moved up/down or when some are not shown.
Sample here:
Ename: f02
Mgr: f04
Job: f03
Comm: f07
Sal: f06
Deptno: f08
Don't forget to remove it when it no longer in use. :-)
|
|
|
|