Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F947169
_Events.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Subscribers
None
_Events.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dojox.grid._Events"
]){
dojo
.
_hasResource
[
"dojox.grid._Events"
]
=
true
;
dojo
.
provide
(
"dojox.grid._Events"
);
dojo
.
declare
(
"dojox.grid._Events"
,
null
,{
cellOverClass
:
"dojoxGridCellOver"
,
onKeyEvent
:
function
(
e
){
this
.
dispatchKeyEvent
(
e
);
},
onContentEvent
:
function
(
e
){
this
.
dispatchContentEvent
(
e
);
},
onHeaderEvent
:
function
(
e
){
this
.
dispatchHeaderEvent
(
e
);
},
onStyleRow
:
function
(
_1
){
var
i
=
_1
;
i
.
customClasses
+=
(
i
.
odd
?
" dojoxGridRowOdd"
:
""
)
+
(
i
.
selected
?
" dojoxGridRowSelected"
:
""
)
+
(
i
.
over
?
" dojoxGridRowOver"
:
""
);
this
.
focus
.
styleRow
(
_1
);
this
.
edit
.
styleRow
(
_1
);
},
onKeyDown
:
function
(
e
){
if
(
e
.
altKey
||
e
.
metaKey
){
return
;
}
var
dk
=
dojo
.
keys
;
var
_2
;
switch
(
e
.
keyCode
){
case
dk
.
ESCAPE
:
this
.
edit
.
cancel
();
break
;
case
dk
.
ENTER
:
if
(
!
this
.
edit
.
isEditing
()){
_2
=
this
.
focus
.
getHeaderIndex
();
if
(
_2
>=
0
){
this
.
setSortIndex
(
_2
);
break
;
}
else
{
this
.
selection
.
clickSelect
(
this
.
focus
.
rowIndex
,
dojo
.
isCopyKey
(
e
),
e
.
shiftKey
);
}
dojo
.
stopEvent
(
e
);
}
if
(
!
e
.
shiftKey
){
var
_3
=
this
.
edit
.
isEditing
();
this
.
edit
.
apply
();
if
(
!
_3
){
this
.
edit
.
setEditCell
(
this
.
focus
.
cell
,
this
.
focus
.
rowIndex
);
}
}
if
(
!
this
.
edit
.
isEditing
()){
var
_4
=
this
.
focus
.
focusView
||
this
.
views
.
views
[
0
];
_4
.
content
.
decorateEvent
(
e
);
this
.
onRowClick
(
e
);
}
break
;
case
dk
.
SPACE
:
if
(
!
this
.
edit
.
isEditing
()){
_2
=
this
.
focus
.
getHeaderIndex
();
if
(
_2
>=
0
){
this
.
setSortIndex
(
_2
);
break
;
}
else
{
this
.
selection
.
clickSelect
(
this
.
focus
.
rowIndex
,
dojo
.
isCopyKey
(
e
),
e
.
shiftKey
);
}
dojo
.
stopEvent
(
e
);
}
break
;
case
dk
.
TAB
:
this
.
focus
[
e
.
shiftKey
?
"previousKey"
:
"nextKey"
](
e
);
break
;
case
dk
.
LEFT_ARROW
:
case
dk
.
RIGHT_ARROW
:
if
(
!
this
.
edit
.
isEditing
()){
var
_5
=
e
.
keyCode
;
dojo
.
stopEvent
(
e
);
_2
=
this
.
focus
.
getHeaderIndex
();
if
(
_2
>=
0
&&
(
e
.
shiftKey
&&
e
.
ctrlKey
)){
this
.
focus
.
colSizeAdjust
(
e
,
_2
,(
_5
==
dk
.
LEFT_ARROW
?-
1
:
1
)
*
5
);
}
else
{
var
_6
=
(
_5
==
dk
.
LEFT_ARROW
)
?
1
:-
1
;
if
(
dojo
.
_isBodyLtr
()){
_6
*=-
1
;
}
this
.
focus
.
move
(
0
,
_6
);
}
}
break
;
case
dk
.
UP_ARROW
:
if
(
!
this
.
edit
.
isEditing
()
&&
this
.
focus
.
rowIndex
!==
0
){
dojo
.
stopEvent
(
e
);
this
.
focus
.
move
(
-
1
,
0
);
}
break
;
case
dk
.
DOWN_ARROW
:
if
(
!
this
.
edit
.
isEditing
()
&&
this
.
focus
.
rowIndex
+
1
!=
this
.
rowCount
){
dojo
.
stopEvent
(
e
);
this
.
focus
.
move
(
1
,
0
);
}
break
;
case
dk
.
PAGE_UP
:
if
(
!
this
.
edit
.
isEditing
()
&&
this
.
focus
.
rowIndex
!==
0
){
dojo
.
stopEvent
(
e
);
if
(
this
.
focus
.
rowIndex
!=
this
.
scroller
.
firstVisibleRow
+
1
){
this
.
focus
.
move
(
this
.
scroller
.
firstVisibleRow
-
this
.
focus
.
rowIndex
,
0
);
}
else
{
this
.
setScrollTop
(
this
.
scroller
.
findScrollTop
(
this
.
focus
.
rowIndex
-
1
));
this
.
focus
.
move
(
this
.
scroller
.
firstVisibleRow
-
this
.
scroller
.
lastVisibleRow
+
1
,
0
);
}
}
break
;
case
dk
.
PAGE_DOWN
:
if
(
!
this
.
edit
.
isEditing
()
&&
this
.
focus
.
rowIndex
+
1
!=
this
.
rowCount
){
dojo
.
stopEvent
(
e
);
if
(
this
.
focus
.
rowIndex
!=
this
.
scroller
.
lastVisibleRow
-
1
){
this
.
focus
.
move
(
this
.
scroller
.
lastVisibleRow
-
this
.
focus
.
rowIndex
-
1
,
0
);
}
else
{
this
.
setScrollTop
(
this
.
scroller
.
findScrollTop
(
this
.
focus
.
rowIndex
+
1
));
this
.
focus
.
move
(
this
.
scroller
.
lastVisibleRow
-
this
.
scroller
.
firstVisibleRow
-
1
,
0
);
}
}
break
;
default
:
break
;
}
},
onMouseOver
:
function
(
e
){
e
.
rowIndex
==-
1
?
this
.
onHeaderCellMouseOver
(
e
)
:
this
.
onCellMouseOver
(
e
);
},
onMouseOut
:
function
(
e
){
e
.
rowIndex
==-
1
?
this
.
onHeaderCellMouseOut
(
e
)
:
this
.
onCellMouseOut
(
e
);
},
onMouseDown
:
function
(
e
){
e
.
rowIndex
==-
1
?
this
.
onHeaderCellMouseDown
(
e
)
:
this
.
onCellMouseDown
(
e
);
},
onMouseOverRow
:
function
(
e
){
if
(
!
this
.
rows
.
isOver
(
e
.
rowIndex
)){
this
.
rows
.
setOverRow
(
e
.
rowIndex
);
e
.
rowIndex
==-
1
?
this
.
onHeaderMouseOver
(
e
)
:
this
.
onRowMouseOver
(
e
);
}
},
onMouseOutRow
:
function
(
e
){
if
(
this
.
rows
.
isOver
(
-
1
)){
this
.
onHeaderMouseOut
(
e
);
}
else
{
if
(
!
this
.
rows
.
isOver
(
-
2
)){
this
.
rows
.
setOverRow
(
-
2
);
this
.
onRowMouseOut
(
e
);
}
}
},
onMouseDownRow
:
function
(
e
){
if
(
e
.
rowIndex
!=-
1
){
this
.
onRowMouseDown
(
e
);
}
},
onCellMouseOver
:
function
(
e
){
if
(
e
.
cellNode
){
dojo
.
addClass
(
e
.
cellNode
,
this
.
cellOverClass
);
}
},
onCellMouseOut
:
function
(
e
){
if
(
e
.
cellNode
){
dojo
.
removeClass
(
e
.
cellNode
,
this
.
cellOverClass
);
}
},
onCellMouseDown
:
function
(
e
){
},
onCellClick
:
function
(
e
){
this
.
_click
[
0
]
=
this
.
_click
[
1
];
this
.
_click
[
1
]
=
e
;
if
(
!
this
.
edit
.
isEditCell
(
e
.
rowIndex
,
e
.
cellIndex
)){
this
.
focus
.
setFocusCell
(
e
.
cell
,
e
.
rowIndex
);
}
this
.
onRowClick
(
e
);
},
onCellDblClick
:
function
(
e
){
if
(
this
.
_click
.
length
>
1
&&
dojo
.
isIE
){
this
.
edit
.
setEditCell
(
this
.
_click
[
1
].
cell
,
this
.
_click
[
1
].
rowIndex
);
}
else
{
if
(
this
.
_click
.
length
>
1
&&
this
.
_click
[
0
].
rowIndex
!=
this
.
_click
[
1
].
rowIndex
){
this
.
edit
.
setEditCell
(
this
.
_click
[
0
].
cell
,
this
.
_click
[
0
].
rowIndex
);
}
else
{
this
.
edit
.
setEditCell
(
e
.
cell
,
e
.
rowIndex
);
}
}
this
.
onRowDblClick
(
e
);
},
onCellContextMenu
:
function
(
e
){
this
.
onRowContextMenu
(
e
);
},
onCellFocus
:
function
(
_7
,
_8
){
this
.
edit
.
cellFocus
(
_7
,
_8
);
},
onRowClick
:
function
(
e
){
this
.
edit
.
rowClick
(
e
);
this
.
selection
.
clickSelectEvent
(
e
);
},
onRowDblClick
:
function
(
e
){
},
onRowMouseOver
:
function
(
e
){
},
onRowMouseOut
:
function
(
e
){
},
onRowMouseDown
:
function
(
e
){
},
onRowContextMenu
:
function
(
e
){
dojo
.
stopEvent
(
e
);
},
onHeaderMouseOver
:
function
(
e
){
},
onHeaderMouseOut
:
function
(
e
){
},
onHeaderCellMouseOver
:
function
(
e
){
if
(
e
.
cellNode
){
dojo
.
addClass
(
e
.
cellNode
,
this
.
cellOverClass
);
}
},
onHeaderCellMouseOut
:
function
(
e
){
if
(
e
.
cellNode
){
dojo
.
removeClass
(
e
.
cellNode
,
this
.
cellOverClass
);
}
},
onHeaderCellMouseDown
:
function
(
e
){
},
onHeaderClick
:
function
(
e
){
},
onHeaderCellClick
:
function
(
e
){
this
.
setSortIndex
(
e
.
cell
.
index
);
this
.
onHeaderClick
(
e
);
},
onHeaderDblClick
:
function
(
e
){
},
onHeaderCellDblClick
:
function
(
e
){
this
.
onHeaderDblClick
(
e
);
},
onHeaderCellContextMenu
:
function
(
e
){
this
.
onHeaderContextMenu
(
e
);
},
onHeaderContextMenu
:
function
(
e
){
if
(
!
this
.
headerMenu
){
dojo
.
stopEvent
(
e
);
}
},
onStartEdit
:
function
(
_9
,
_a
){
},
onApplyCellEdit
:
function
(
_b
,
_c
,
_d
){
},
onCancelEdit
:
function
(
_e
){
},
onApplyEdit
:
function
(
_f
){
},
onCanSelect
:
function
(
_10
){
return
true
;
},
onCanDeselect
:
function
(
_11
){
return
true
;
},
onSelected
:
function
(
_12
){
this
.
updateRowStyles
(
_12
);
},
onDeselected
:
function
(
_13
){
this
.
updateRowStyles
(
_13
);
},
onSelectionChanged
:
function
(){
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 10:39 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26311
Default Alt Text
_Events.js (5 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment