bhomass
10 Jun 2009, 3:18 PM
I have a grid, I am using both single and double click events for different things. but single click always get triggered first when I double click. and worse, when processing the single click, it smothers the double click event from appearing.
schemaGrid = new EditorGrid<BeanModel>(store, cm){
protected void onClick(GridEvent ge) {
}
protected void onDoubleClick(GridEvent ge) {
}
}
any way to tell them apart?
schemaGrid = new EditorGrid<BeanModel>(store, cm){
protected void onClick(GridEvent ge) {
}
protected void onDoubleClick(GridEvent ge) {
}
}
any way to tell them apart?