-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjmsheet.js
1647 lines (1490 loc) · 48.8 KB
/
jmsheet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******************
*
* 类似于excel的WEB在线版
* creator fefeding
* date 2014-01-21
*
*/
/**
*
* 在线表格中文包
*
*/
var jmSheetLan = {
menu: {
'Toggle freeze columns to here': '从当前列开始固定',
'Insert column after': '在当前列后插入',
'Insert column before': '在当前列前插入',
'Add column to end': '添加列到末尾',
'Delete this column': '删除列',
'Hide column': '隐藏列',
'Toggle freeze rows to here': '从当前行开始固定',
'Insert row after': '在当前行下面插入',
'Insert row before': '在当前行上面插入',
'Add row to end': '添加行到末尾',
'Delete this row': '删除行',
'Hide row': '隐藏行'
}
};
/**
*
* 在线表格
* 基于jQuery.sheet开源组件
*/
var jmSheet = (function() {
//获取当前组件的根路径
$.sheet.root = getSheetRoot();
//增加图表的依赖
$.sheet.dependencies['highcharts'] = {script:'plugins/highcharts/highcharts.js'};
//$.sheet.dependencies['highcharts-more'] = {script:'plugins/highcharts/highcharts-more.js'};
//预加载组件依赖
$.sheet.preLoad($.sheet.root, {skip: null});
/**
*
* 获取当前组件的根url
*
*/
function getSheetRoot() {
var jstag = $("script[src*='/jmsheet.js']");
if(jstag.length > 0) {
var src = jstag.attr('src');
return src.substring(0,src.indexOf('/jmsheet.js') + 1);
}
}
/**
*
* 在线表格
* 依赖开源组件jQuery.sheet完善的在线表格功能
*/
function jmSheet(option) {
Globalize.culture('zh-CN');
this.container = option.container;
this.columnChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
var self = this;
if(option.toolbar) {
this.toolbar = new jmToolbar(this,this.container);
}
this.sheetContainer = $('<div class="jQuerySheet"></div>').appendTo(this.container);
if(option.html) {
if(typeof option.html == 'function') this.sheetContainer.html(option.html());
else this.sheetContainer.html(option.html);
}
/*
this.jqSheet.mousewheel(function() {
console.log(arguments);
});*/
//单元格选择事件回调集合
this.selectCallbacks = {
handlers: [],
bind: function(handler) {
this.handlers.push(handler);
},
unbind: function(handler) {
for(var i=this.handlers.length - 1;i>=0;i--) {
if(handler == this.handlers[i]) this.handlers.splice(i,1);
}
},
raise: function() {
for(var i=0;i<this.handlers.length;i++) {
this.handlers[i].apply(self,arguments);
}
}
};
this.reset();
}
/**
*
* 重新绑定表格
*/
jmSheet.prototype.reset = function() {
this.jqSheet = this.sheetContainer.sheet();
this.sheet = this.jqSheet.getSheet();
this.bindEvents();//初始化事件
}
/**
*
* 加载数据
*/
jmSheet.prototype.loadData = function(data) {
if(data && data.length > 0) {
var tbs = [];
for(var i=0;i<data.length;i++) {
var d = data[i];
tbs.push('<table class="jSheet ui-widget-content" border="1px" cellpadding="0" cellspacing="0" ');
var title = d.title || ('sheet' + i);
tbs.push('title="');
tbs.push(title);
tbs.push('"><tbody>');
if(d.columns) {
}
}
}
};
/**
*
* 添加列
*/
jmSheet.prototype.addColumn = function(row,colCount,tableIndex,isBefore,skipFormulaReParse) {
var oldi = this.sheet.i;
this.sheet.i = typeof tableIndex == 'undefined' || tableIndex == null?oldi:tableIndex;
this.sheet.controlFactory.addColumnMulti(row,colCount,isBefore,skipFormulaReParse);
this.sheet.i = oldi;
}
/**
*
* 添加行
*/
jmSheet.prototype.addRow = function(row,rowCount,tableIndex,isBefore,skipFormulaReParse) {
var oldi = this.sheet.i;
this.sheet.i = typeof tableIndex == 'undefined' || tableIndex == null?oldi:tableIndex;
this.sheet.controlFactory.addRowMulti(row,rowCount,isBefore,skipFormulaReParse);
this.sheet.i = oldi;
}
/**
*
* 修改单元格的值
*/
jmSheet.prototype.updateCellValue = function(value,row,col,tableIndex) {
this.jqSheet.setCellValue(value,row,col,tableIndex);
}
/**
*
* 设置某个单元格的函数
*/
jmSheet.prototype.setCellFormula = function(formula,row,col,tableIndex) {
this.jqSheet.setCellFormula.apply(this.jqSheet,arguments);
}
/**
*
* 修改单元格样式
*/
jmSheet.prototype.cellStyleToggle = function(setClass, removeClass,row,col,tableIndex) {
var cell = this.sheet.getCell(row,col,tableIndex);
this.sheet.cellStyleToggle(setClass,removeClass,[cell.td[0]]);
}
/**
*
* 修改单元格样式
*/
jmSheet.prototype.cellChangeStyle = function(styleName, styleValue,row,col,tableIndex) {
var cell = this.sheet.getCell(row,col,tableIndex);
this.sheet.cellChangeStyle(styleName,styleValue,[cell]);
}
/**
*
* 转为json格式
*/
jmSheet.prototype.toJSON = function() {
var data = $.sheet.dts.fromTables.json(this.sheet,true);
if(this.charts) {
for(var i=0;i<this.charts.length;i++) {
var chart = this.charts[i];
var sheet = data[chart.tableIndex];
if(sheet) {
if(!sheet['charts']) sheet['charts']=[];
sheet['charts'].push(chart.toJSON());
}
}
}
return data;
};
/**
*
* 转为json格式
*/
jmSheet.prototype.fromJSON = function(json) {
var tables = $.sheet.dts.toTables.json(json);
this.sheet.openSheet(tables);
//this.bindChartMoveEvent(this.sheetContainer.find('.jSChart'));
};
/**
*
* 清空表格信息
*/
jmSheet.prototype.clear = function() {
//this.container.empty();
//this.jqSheet = this.sheetContainer.sheet();
//this.sheet = this.jqSheet.getSheet();
}
/**
*
* 设置表格标题,如果不指定表格则为当前表格
*/
jmSheet.prototype.title = function(title,index) {
if(typeof index != 'undefined') {
this.sheet.setActiveSheet(index);
}
this.sheet.setDirty(true);
this.sheet.obj.table().attr({'title': title});
this.sheet.obj.tab().html(title);
}
/**
*
* 重置表格,指定html
*/
jmSheet.prototype.html = function(html) {
this.sheet.kill();
this.jqSheet = this.sheetContainer.html(html);
this.reset();
}
/**
*
* 获取当前表格对象
*/
jmSheet.prototype.getActiveTable = function(json) {
var tb = this.sheet.obj.enclosure();
return tb;
};
/**
*
* 获取当前激活的表索引,,从0开始
*/
jmSheet.prototype.getActiveTableIndex = function() {
var tb = this.getActiveTable();
if(tb.length > 0) {
var tbid = tb[0].table.id;
var idindex = tbid.lastIndexOf('_');
return Number(tbid.substring(idindex + 1));
}
}
/**
*
* 生成图表
*
*/
jmSheet.prototype.createChart = function(type,opt) {
var curtb = this.getActiveTable();
opt=$.extend({table:curtb,chartType:type},opt);
if(!this.charts) this.charts = [];
var self = this;
var chart = new jmSheetChart(this,opt);
chart.setting(function(b){
if(b)self.charts.push(this);
});//弹出设置
return chart;
}
/**
*
* 直接展示图表
*/
jmSheet.prototype.renderChart = function(opt) {
var tb = this.sheet.obj.enclosures()[opt.tableIndex] || this.getActiveTable();
opt=$.extend({table:$(tb)},opt);
var chart = new jmSheetChart(this,opt);
if(!this.charts) this.charts = [];
this.charts.push(chart);
chart.render();
return;
}
/**
*
* 绑定事件响应
*/
jmSheet.prototype.bind = function(name,handler) {
return this.sheetContainer.bind(name,handler);
}
/**
*
* 绑定所有图表的事件
*/
jmSheet.prototype.bindEvents = function() {
var self = this;
this.bind('sheetCalculation',function(o1,o2,cell) {
if(cell.which == 'cell') {
$(self.charts).each(function(i,chart){
chart.cellChange(cell);
});
}
});
//绑定选择完成事件
this.bind('cellSelectChanged',function(o1,o2,cell) {
if(cell.which == 'cell') {
if(self.selectCallbacks) {
self.selectCallbacks.raise(cell,'cellSelectChanged');
}
}
});
//绑定框选事件
this.bind('cellSelecting',function(o1,o2,cell) {
if(cell.which == 'cell') {
if(self.selectCallbacks) {
self.selectCallbacks.raise(cell,'cellSelecting');
}
}
});
}
/**
*
* 绑定图表事件
*/
jmSheet.prototype.bindChartMoveEvent = function(charts) {
charts.each(function(i,chart) {
chart.onmousedown = function(evt) {
evt = evt || event;
this.mousetop = evt.clientY || evt.y;
this.mouseleft = evt.clientX || evt.x;
this.oldposition = $(this).offset();
this.moved = true;
return false;
};
chart.onmousemove = function(evt) {
if(this.moved) {
evt = evt || event;
var mx = evt.clientX || evt.x,my = evt.clientY || evt.y;
var ox = mx - this.mouseleft,oy=my-this.mousetop;
var pos = {top: this.oldposition.top + oy,
left: this.oldposition.left + ox};
$(this).css(pos);
this.oldposition = pos;
}
}
});
}
/**
*
* 根据索引获取表格表标识
*/
jmSheet.prototype.getColumnChar = function(index) {
index--;
if(this.columnChars.length > index) return this.columnChars[index];
else {
var cr = '';
var p = index % this.columnChars.length;
index = Math.floor(index / this.columnChars.length);
cr = (this.getColumnChar(index)||'') + this.columnChars[p];
return cr;
}
}
/**
*
* 根据列标识获取索引
*/
jmSheet.prototype.getColumnIndex = function(colChar,step) {
if(!colChar) return 0;
step = step || 0;
if(colChar.length == 1) return this.columnChars.indexOf(colChar) + 1;
else {
var c = colChar.substr(0,1);
colChar = colChar.substring(1);
step ++;
var index = this.getColumnIndex(c) * this.columnChars.length * step;
index += this.getColumnIndex(colChar,step);
return index;
}
}
/**
*
* 重新指定表格大小
*/
jmSheet.prototype.resize = function(s) {
if(s) {
if(s.width) this.sheetContainer.width(s.width);
if(s.height) {
var h = s.height;// - this.sheet.obj.tabContainer().outerHeight();
if(this.toolbar) {
h -= this.toolbar.size().height;
}
this.sheetContainer.height(h);
}
this.sheet.sheetSyncSize();
}
}
/**
*
* 表格的工具栏
*/
function jmToolbar(sheetInstance,container,callback) {
var toolbarfile = 'toolbar.html';
this.container = $('<div class="jmsheet-toolbar"></div>').appendTo(container);
this.sheetInstance = sheetInstance;
var self = this;
/**
*
* 获取工具栏的大小
*/
this.size = function() {
return {width: this.container.width(),height: this.container.height()};
}
/**
*
* 初始化工具栏事件
*/
this.init = function() {
this.container.find('a,select').each(function() {
this.sheet = self.sheetInstance;
});
var cut = this.container.find('a[data-js=cut]');
var copy = this.container.find('a[data-js=copy]');
var clip = new ZeroClipboard(copy.add(cut), {
moviePath: $.sheet.root + "plugins/ZeroClipboard.swf"
});
clip.on('mousedown', function(client) {
clip.setText(self.sheetInstance.sheet.tdsToTsv());
$(this).mousedown();
});
cut.mousedown(function() {
self.sheetInstance.sheet.tdsToTsv(null, true);
});
this.container.find('input[data-js=fillcolor]').colorPicker().change(function(){
self.sheetInstance.sheet.cellChangeStyle('background-color', $(this).val());
}).find('+div').toggleClass('imgbaritem item-fillcolor',true);
this.container.find('input[data-js=fontcolor]').colorPicker().change(function(){
self.sheetInstance.sheet.cellChangeStyle('color', $(this).val());
}).find('+div').toggleClass('imgbaritem item-fontcolor',true);
}
$.get($.sheet.root + toolbarfile,function(html) {
self.container.html(html);
self.init();//初始化
if(callback) callback();
});
}
return jmSheet;
})();
jmSheet.untils = {
/**
* 转为日期格式
*
* @method parseDate
* @param {string} s 时间字符串
* @return {date} 日期
*/
parseDate:function(s) {
if (typeof s == 'object') {
return s;
}
//如果是"HH:mm:ss"格式 或者'HH:mm'
if (new RegExp('^([0-9]{2,2}\:)').test(s)) {
var tempDate = new Date();
var dateString = 'yyyy-MM-dd';
dateString = dateString.replace('yyyy', tempDate.getFullYear().toString())
.replace('MM', (tempDate.getMonth() < 9 ? '0' : '') + (tempDate.getMonth() + 1).toString())
.replace('dd', (tempDate.getDate() < 10 ? '0' : '') + tempDate.getDate().toString());
s = dateString + " " + s;
}
var ar = (s + ",0,0,0").match(/\d+/g);
return ar[5] ? (new Date(ar[0], ar[1] - 1, ar[2], ar[3], ar[4], ar[5])) : (new Date(s));
},
/**
* 格式化时间
*/
formatDate:function(date, format) {
date = date || new Date();
format = format || 'yyyy-MM-dd HH:mm:ss';
var result = format.replace('yyyy', date.getFullYear().toString())
.replace('MM', (date.getMonth()< 9?'0':'') + (date.getMonth() + 1).toString())
.replace('dd', (date.getDate()< 10?'0':'')+date.getDate().toString())
.replace('HH', (date.getHours() < 10 ? '0' : '') + date.getHours().toString())
.replace('mm', (date.getMinutes() < 10 ? '0' : '') + date.getMinutes().toString())
.replace('ss', (date.getSeconds() < 10 ? '0' : '') + date.getSeconds().toString());
return result;
},
/**
* 获取元素的坐标偏移量
* @method getOffset
* @param {Object} target 元素对象
**/
getOffset: function (target) {
target = $(target)[0];
var x = y = 0;
do {
x += target.offsetLeft;
y += target.offsetTop;
} while (target = target.offsetParent);
return {
'left': x,
'top': y
};
},
/**
* 获取鼠标坐标
* @method getMouseLocation
* @param {Object} ev 事件对象
* @param {Object} target 可选,事件发生对象
**/
getMouseLocation: function (ev, target) {
if (!target) target = $(document.body);
return {
x: ev.clientX - target.offset().left,
y: ev.clientY - target.offset().top
};
},
/**
* 对象移动插件
* @class $jm.objMove
* @for $jm.win
*
**/
setMove: function (obj) {
//拖放对象
function moveHandler(obj) {
var target = obj,
flag = false,
currentLocation,
mouseLastLocation;
/**
* 鼠标按下,开始拖放事件
**/
function mdhandler(evt) {
evt = evt || window.event;
if(evt.handle === false) return;
if (evt.button == 0 || evt.button == 1) {
//显示遮板
//_win.__showModelDiv(true);
//标记
flag = true;
//var p1 = jmSheet.untils.getOffset(target);
//var p3 = target.position();
//var p2 = target.offset();
//拖拽对象位置初始化
currentLocation = {
x: target[0].offsetLeft, //.offset()
y: target[0].offsetTop
};
//鼠标最后位置初始化
mouseLastLocation = jmSheet.untils.getMouseLocation(evt);
//解决鼠标离开时事件丢失问题
//注册事件(鼠标移动)
$(document).unbind("mousemove", mmhandler);
$(document).bind("mousemove", mmhandler);
//$(document).bind("touchmove", _mmHandler);
//注册事件(鼠标松开)
$(document).unbind("mouseup", muhandler);
$(document).bind("mouseup", muhandler);
//取消事件的默认动作
/*if (evt.preventDefault)
evt.preventDefault();
else
evt.returnValue = false;*/
//evt.stopPropagation();
evt.handle = true;//标记为已响应
//return false;
}
};
/**
* 鼠标移动,开始拖放事件
**/
function mmhandler(evt) {
if (flag) {
evt = evt || window.event;
//当前鼠标的x,y座标
var mouseCurrentLocation = jmSheet.untils.getMouseLocation(evt);
//拖拽对象座标更新(变量)
currentLocation.x = currentLocation.x + (mouseCurrentLocation.x - mouseLastLocation.x);
currentLocation.y = currentLocation.y + (mouseCurrentLocation.y - mouseLastLocation.y);
//将鼠标最后位置赋值为当前位置
mouseLastLocation = mouseCurrentLocation;
//如果锁定左边界,则X坐标不可小于0
//if (currentLocation.x < 1) currentLocation.x = 1;
//锁定左边界
/*if (_win.params.bounds.right) {
//最大X坐标为容器宽度减去窗口宽度
var maxright;
if ($jm.element.type(_win.parent) == 'body' ||
$jm.element.type(_win.parent) == 'window' ||
$jm.element.type(_win.parent) == 'document') {
var winsize = $jm.winSize(); //获取浏览器窗口大小,取最大值
maxright = winsize.w - _win.width() - 10;
}
else {
maxright = _win.parent.width() - _win.width() - 10;
}
if (currentLocation.x > maxright) currentLocation.x = maxright;
}*/
//如果锁定顶部边界,则不可越边容器顶部
/*if (_win.params.bounds.top && currentLocation.y < 1) currentLocation.y = 1;
//锁定底部边界
//不让窗口越过底部边界
if (_win.params.bounds.bottom) {
//最大y坐标为容器高度减去窗口高度
var maxbottom;
if ($jm.element.type(_win.parent) == 'body' ||
$jm.element.type(_win.parent) == 'window' ||
$jm.element.type(_win.parent) == 'document') {
var winsize = $jm.winSize(); //获取浏览器窗口大小,取最大值
maxbottom = winsize.h - _win.height() - 10;
}
else {
maxbottom = _win.parent.height() - _win.height() - 10;
}
if (currentLocation.y > maxbottom) currentLocation.y = maxbottom;
}
*/
//拖拽对象座标更新(位置)//并保证不出界
//if (_objCurrentLocation.x > 1)
target.css("left", currentLocation.x + "px");
//if (_objCurrentLocation.y > 1)
target.css("top", currentLocation.y + "px");
evt.stopPropagation();
return false;
}
};
/**
* 鼠标松开
**/
function muhandler(evt) {
if (flag) {
evt = evt || window.event;
//注销鼠标事件
clearhandler();
//标记
flag = false;
}
};
/**
* 注销鼠标事件(mousemove mouseup)
**/
function clearhandler() {
if (target) {
$(document).unbind("mousemove", mmhandler);
//$(document).unbind("touchmove");
$(document).unbind("mouseup", muhandler);
//隐藏遮板
//target.__showModelDiv(false);
}
};
//外挂
this.clear = clearhandler;
//注册事件(鼠标按下)
target.unbind("mousedown", mdhandler);
target.bind("mousedown", mdhandler);
}
return new moveHandler(obj);
},
setResize: function(obj,callback) {
/**
* 窗体大小修改类
**/
function resizeHandler(obj,callback) {
var target = obj; //对象
var flag = 0; //拖拉状态0=否,1=右;2=下;3表示右下
var curSize; //当前大小
var lastLocation; //最后位置
var resizeareawidth = 6; //可响应拉的宽度
var self = this;
//鼠标按下
var mdHandler = function (evt) {
if (evt.handle !== false && target) {
evt = evt || window.event;
//拖拽对象位置初始化
curSize = {
w: target.width(),
h: target.height()
};
//鼠标最后位置初始化
lastLocation = jmSheet.untils.getMouseLocation(evt);
//标记
var tmpflag = 0;
if (target.offset().top + curSize.h < lastLocation.y + resizeareawidth) flag = 2; //表示向下拉
//var scrolw = target.winBody.get(0).offsetWidth - target.winBody.get(0).scrollWidth;
//if (target.win.offset().left + target.win.width() > _lastLocation.x && target.win.offset().left + target.win.width() - _resizeareawidth < _lastLocation.x) tmpflag = 1;
if (target.offset().left + curSize.w < lastLocation.x + resizeareawidth) tmpflag = 1; //向右拉
if (flag == 2 && tmpflag == 1) {
flag = 3; //表示为右下拉
$(this).css('cursor', 'se-resize');
}
else if (tmpflag == 1) {
flag = tmpflag;
$(this).css('cursor', 'e-resize');
}
else if (flag == 2) {
$(this).css('cursor', 's-resize');
}
else {
$(this).css('cursor', 'default');
return;
}
//显示遮板
//_win.__showModelDiv(true);
//注册事件(鼠标移动)
$(document).unbind("mousemove", mmHandler);
$(document).bind("mousemove", mmHandler);
//$(document).bind("touchmove", mmHandler);
//_win.parent.bind("mousemove", mmHandler);
//注册事件(鼠标松开)
$(document).unbind("mouseup", muHandler);
$(document).bind("mouseup", muHandler);
//_win.parent.bind("mouseup", muHandler);
//取消事件的默认动作
/*if (evt.preventDefault)
evt.preventDefault();
else
evt.returnValue = false;*/
evt.stopPropagation();
evt.handle = false;
if(callback) callback('resizeStart');
return false;
}
};
//鼠标移动
var mmHandler = function (evt) {
if (flag != 0) {
evt = evt || window.event;
//当前鼠标的x,y座标
var mouseCurrentLocation = jmSheet.untils.getMouseLocation(evt);
//拖拽对象座标更新(变量)
curSize.w = curSize.w + (mouseCurrentLocation.x - lastLocation.x);
curSize.h = curSize.h + (mouseCurrentLocation.y - lastLocation.y);
//将鼠标最后位置赋值为当前位置
lastLocation = mouseCurrentLocation;
curSize.w = curSize.w > 200?curSize.w:200;
curSize.h = curSize.h > 150?curSize.h:150;
//更新对象大小
if (flag == 1 || flag == 3) target.width(curSize.w);
if (flag == 2 || flag == 3) target.height(curSize.h);
//取消事件的默认动作
if (evt.preventDefault)
evt.preventDefault();
else
evt.returnValue = false;
evt.stopPropagation();
return false;
}
};
//鼠标松开
var muHandler = function (evt) {
if (flag != 0) {
evt = evt || window.event;
//注销鼠标事件(mousemove mouseup)
self.clear();
//标记
flag = 0;
//隐藏遮板
//_win.__showModelDiv(false);
evt.stopPropagation();
if(callback) callback('resizeEnd');
return false;
}
};
//注销鼠标事件(mousemove mouseup)
this.clear = function() {
if (target) {
target.css('cursor', 'default');
$(document).unbind("mousemove", mmHandler);
//$(document).unbind("touchmove");
$(document).unbind("mouseup", muHandler);
}
};
/**
* 注册大小改变对象(参数为$jm.win对象)
* @method Register
* @for $jm.objResize
* @param {Object} win $jm.win对象
**/
this.init = function() {
//注册事件(鼠标按下)
target.unbind("mousedown", mdHandler);
target.bind("mousedown", mdHandler);
return this;
}
};
return new resizeHandler(obj,callback).init();
},
/**
*
* 弹出窗口层
*/
window:function(content,opt) {
if(content.attr('data-sheetwindow')) {
return this.windows[content.attr('data-sheetwindow')];
}
if(!this.windowindex) this.windowindex = 0;
if(!this.windows) this.windows={};
this.windowindex++;
var win = this.windows[this.windowindex] = {
option: opt,
parent: opt.parent || document.body,
container : $('<div class="jmSheet-window" tabindex="0"></div>'),
content: content,
show: function() {
this.container.appendTo(this.parent).show();
this.active();
return this;
},
hide: function() {
this.container.hide();
return this;
},
close: function() {
this.container.remove();
this.moveHandler.clear();
this.resizeHandler.clear();
return this;
},
resize: function(w,h) {
if(w) {
this.content.width(w);
}
if(h) this.content.height(h);
//如果指定了大小改变回调,则调用大小改变
if(this.option.resize) {
this.option.resize();
}
return this;
},
active: function() {
$(this.container.parent()).find('div.jmSheet-window').css('z-index',50);
this.container.css('z-index',60);//当前选中的窗口移至顶层
}
};
//设置改变大小对象
win.resizeHandler = this.setResize(win.container,function(m) {
if(m=='resizeEnd') {
//大小改变后显示内容
win.content.show();
win.resize(win.container.width(),win.container.height());
}
else if(m=='resizeStart') {
//开始改变大小时隐藏内容
win.content.hide();
}
});
//设置移动对象
win.moveHandler = this.setMove(win.container);
opt.position = opt.position || {left:0,top:0};
win.container.bind('mousedown',function() {
win.active();
});
win.container.css(opt.position);
//如果绑定了健盘按下事件
if(win.option.keydown) {
win.container.bind('keydown',win.option.keydown);
}
win.resize(opt.width,opt.height);
content.attr('data-sheetwindow',this.windowindex).appendTo(win.container);
return win;
}
};
/**
*
* 在线表格图表
*/
function jmSheetChart(sheetInstance,option) {
this.sheetInstance = sheetInstance;
this.container = option.container || $('<div class="jmSheet-chart-parent" tabindex="0"></div>');
this.option = option || {};
this.table = this.option.table;
this.tableIndex = typeof option.tableIndex == 'undefined'?this.sheetInstance.getActiveTableIndex():option.tableIndex;
this.charttype = this.option.type || this.option.chartType || 'line';
this.title = this.option.title || '';
this.xTitle = this.option.xTitle || '';
this.yTitle = this.option.yTitle || '';
this.xformat = this.option.xFormat || '';
this.sheetName = this.option.sheetName || '';;//SHEET' + (this.tableIndex + 1);
//var celldep = this.sheetInstance.sheet.cellHandler.createDependency(this.tableIndex,this.sheetInstance.sheet.highlightedLast.start);
this.option.cellStart = this.option.cellStart || (this.sheetInstance.getColumnChar(this.sheetInstance.sheet.highlightedLast.start.col) +
this.sheetInstance.sheet.highlightedLast.start.row);
this.option.cellEnd = this.option.cellEnd || (this.sheetInstance.getColumnChar(this.sheetInstance.sheet.highlightedLast.end.col) +
this.sheetInstance.sheet.highlightedLast.end.row);
this.parent = this.table.find('.jSScroll>div');
//配置图表信息
this.setting = function(callback) {
var dataarea = (this.sheetName?this.sheetName + '!':'') + this.option.cellStart + ':' + this.option.cellEnd;
var settingcontent = '<div><span style="position:relative;top:-6px;">数据范围:</span><div class="input-container">\
<input type="text" class="jsDataArea" value=""/>\
<img src="'+$.sheet.root+'img/cellselect.png" class="jsCellSelect"/></div></div>\
<div><span>标题:</span><input type="text" class="jsTitle" value=""/></div>';
//如果不是饼图,则出现X轴和Y轴配置
if(this.charttype !== 'pie') {
settingcontent += '<div><span>X轴格式化:</span><input type="text" class="jsXFormat" value="yyyy-MM-dd"/></div>\
<div><span>X轴名称:</span><input type="text" class="jsXTitle" value="yyyy-MM-dd"/></div>\
<div><span>Y轴名称:</span><input type="text" class="jsYTitle" value="yyyy-MM-dd"/></div>';
}
var container = $('<div title="图表配置" class="jmsheet-chartconfig"></div>').html(settingcontent);
container.find('input.jsDataArea').val(dataarea);
container.find('input.jsTitle').val(this.title || '');
container.find('input.jsXTitle').val(this.xTitle || '');
container.find('input.jsYTitle').val(this.yTitle || '');
var self = this;