ExtJS + JQuery / Flot:情节容器的mousedown事件

时间:2011-04-20 22:22:36

标签: plot mouseevent flot extjs pan

我意识到,在flot中,“plotpan”事件和“mousedown”事件之间存在冲突。如果启用绘图pannable,那么mousedown将无法在绘图区域中工作;此外,如果禁用“plotpan”事件,但启用“plotclick”事件和“mousedown”事件,事实证明只有mousedown工作但plotclick没有。我怎样才能确保这三个或更多事件能以更适合的方式运作?演示代码如下:

<html>
<head>

<title>A Test Page</title>
<!-- JQUERY/FLOT LIB FILES -->
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="lib/jquery/excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript"
    src="lib/jquery/jquery.js"></script>
<script language="javascript" type="text/javascript"
    src="lib/jquery/jquery.flot.js"></script>
<script language="javascript" type="text/javascript"
    src="lib/jquery/jquery.flot.navigate.js"></script>
<script language="javascript" type="text/javascript"
    src="lib/jquery/jquery.flot.symbol.js"></script>

<script type="text/javascript">

$(function () {

        // raw data
        d1 = [ [ 0, 2 ], [ 1, 2 ] ];
        d2 = [ [ 2, 2 ], [ 4, 2 ] ];


        //event data
        dataSeries = [{
            color : "rgb(0, 0, 0)",
            data : d1,

            label : "point1",
            points : {
                show : true,
                symbol : "square",
                radius : 4
            }

        }, {
            color : "rgb(255, 100, 123)",
            data : d2,

            label : "point2",
            points : {
                show : true,
                radius : 4
            }
        }];

        //container for graph
        var placeholder = $("#flotDiv");

        if (placeholder.length <= 0) {
            return;
        }

        options= {//graph options

                pan : {
                    interactive : true
                },

                grid: {
                    clickable:true
                }
            };

        $.plot(placeholder, dataSeries, options);

        placeholder.bind("mousedown",function(e){
            alert("mousedown");
        })

        /*
        placeholder.bind("plotclick",function(event, pos, item){
            alert("plotclick");
        });
        */
    });
</script>
</head>
<body>
    <!-- SLD PLOT -->
    <div id="flotDiv" style="width: 600px; height: 300px; padding: 0px; position: relative;"></div>
</body>
</html>

在上面的代码中,mousedown事件不起作用,因为我启用了绘图pannable;如果我禁用了plotpan,那么mousedown会起作用;如果我启用plotclick,仍然只有mousedown工作;我知道plotpan和plotclick都与“mousedown”事件有关,因此存在冲突。但是,我需要找到一种方法让它们一起工作。

感谢任何评论!

1 个答案:

答案 0 :(得分:1)

插件jquery.flot.navigate.js用于缩放和平移第三方插件jquery.event.drag.js,它将取消mousedown传播。解决办法可能是在mousedown事件hadler中返回 true ,以允许冒出鼠标按下事件。