我正在使用kendo-colorpicker(kendoFlatColorPicker)开发自定义Map View组件来更改标记的颜色。 flatcolorpicker的根元素是地图视图包装元素的子元素。
<div id="map-view">
<!--some elements....-->
<div id="custom-flat-color-picker"></div>
</div>
在kendoFlatColorPicker中,用户可以通过拖动鼠标在hsvRect面板中选择颜色。 有一个关键问题...... 按下鼠标按钮并在FlatColorPicker面板上拖动鼠标时,也会拖动地图视图中的地图图像。
我认为这个问题来自事件冒泡。所以,我尝试在'mousedown'事件中使用e.stopPropagation()方法。 但是,它无法正常工作。
其他方面,我也尝试在kendo FlatColorPicker源代码中通过widget扩展自定义_hsvEvets方法,如下面的代码。
var KEYDOWN_NS = 'keydown.kendoEditor';
var bind = kendo.bind;
var FlatColorPicker = kendo.ui.FlatColorPicker;
var extendFlatColorPicker = FlatColorPicker.extend({
options: {
name: 'CustomFlatColorPicker'
},
init: function (element, options){
var self = this;
FlatColorPicker.fn.init.call(self, element, options);
},
_hsvArea: function () {
var that = this,
element = that.element,
hsvRect = element.find('.k-hsv-rectangle'),
hsvHandle = hsvRect.find('.k-draghandle').attr('tabIndex', 0);
function update(x, y) {
var offset = this.offset, dx = x - offset.left, dy = y - offset.top, rw = this.width, rh = this.height;
dx = dx < 0 ? 0 : dx > rw ? rw : dx;
dy = dy < 0 ? 0 : dy > rh ? rh : dy;
that._svChange(dx / rw, 1 - dy / rh);
}
that._hsvEvents = new kendo.UserEvents(hsvRect, {
global: true,
press: function (e) {
//this.element.get(0).dispatchEvent(new Event('mousedown'));
this.offset = kendo.getOffset(hsvRect);
this.width = hsvRect.width();
this.height = hsvRect.height();
hsvHandle.focus();
update.call(this, e.x.location, e.y.location);
},
start: function () {
hsvRect.addClass('k-dragging');
hsvHandle.focus();
},
move: function (e) {
e.preventDefault();
update.call(this, e.x.location, e.y.location);
},
end: function () {
hsvRect.removeClass('k-dragging');
}
});
that._hsvRect = hsvRect;
that._hsvHandle = hsvHandle;
// var cb = that._hsvEvents.press;
// that._hsvEvents.press = function(e){
// e.stopPropagation();
// cb.call(this);
// };
}
});
kendo.ui.plugin(extendFlatColorPicker);
当用户按鼠标按钮拖动鼠标时,在平面颜色选择器上发生'按'事件,但参数'e'没有方法stopPropagation()。
如何停止从colorpicker冒泡到地图视图?
答案 0 :(得分:0)
我解决了这个问题。 我在事件监听器堆栈中发现了事件'pointerdown',可以在chrome dev工具中找到。关于这个事件,我申请了e.stopPropagation()。