Chart2_wev8.js
21 KB
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
if(typeof(MEC_NS) == 'undefined'){
MEC_NS = {};
}
MEC_NS.Chart2 = function(typeTmp, idTmp, mecJsonTmp){
this.type = typeTmp;
if(!idTmp){
idTmp = new UUID().toString();
}
this.id = idTmp;
if(!mecJsonTmp){
mecJsonTmp = this.getDefaultMecJson();
}
this.mecJson = mecJsonTmp;
}
/*获取id。 必需的方法*/
MEC_NS.Chart2.prototype.getID = function(){
return this.id;
};
MEC_NS.Chart2.prototype.runWhenPageOnLoad = function(){
this.afterDesignHtmlBuild();
};
/*获取设计的html, 页面上怎么显示控件完全依赖于此方法。 必需的方法*/
MEC_NS.Chart2.prototype.getDesignHtml = function(){
var theId = this.id;
var htm = "<div class=\"chart2Container\" id=\"NMEC_"+theId+"\"></div>";
return htm;
};
/*页面上显示控件完成后调用此方法,主要用于一些必须要使用js对页面进行后置操作时,无需要此方法可至空。 不必需的方法,有此方法系统自动调用*/
MEC_NS.Chart2.prototype.afterDesignHtmlBuild = function(){
var theId = this.id;
_MEC_ChartWidth = $("#content_editor").width()-4;
var p = this.mecJson;
p["id"] = theId;
var charttype = p["charttype"];
$("#NMEC_" + theId).html("");
eval("BuildChart2_"+charttype+"(p, false)");
};
/*获取构建属性编辑窗体的html,添加和单击控件后会调用此方法,由此方法去构建属性编辑窗体。 必需的方法*/
MEC_NS.Chart2.prototype.getAttrDlgHtml = function(){
var styleL = "_style" + _userLanguage;
var tip = ""
if(_userLanguage=="8"){
tip = "SQL format description, please click on the SQL help, where you can use the page Jump to pass over the parameters, namely: {parameter name}";
}else if(_userLanguage=="9"){
tip = "SQL格式說明請點擊SQL幫助,此處可以使用頁面跳轉時傳遞過來的參數,即:{參數名稱}";
}else{
tip = "SQL格式说明请点击SQL帮助,此处可以使用页面跳转时传递过来的参数,即:{参数名称}";
}
var theId = this.id;
var htm = "<div id=\"MADChart2_"+theId+"\" class=\"MADChart2_Container\">"
+"<div class=\"title\">"
+SystemEnv.getHtmlNoteName(4184) //图表基本信息
+"</div>"
+"<div class=\"form-group\">"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\">"+SystemEnv.getHtmlNoteName(4185)+"</span>" //类型:
+"<div class=\"col-4\"><select class=\"form-control\" id=\"charttype_"+theId+"\" onchange=\"MADChart2_ChangeType('" + theId + "', this);\">"
+"<option value=\"LineGraph\">"+SystemEnv.getHtmlNoteName(4189)+"</option>" //折线图
+"<option value=\"Circle\">"+SystemEnv.getHtmlNoteName(4227)+"</option>" //圆形图
+"</select></div>"
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\">"+SystemEnv.getHtmlNoteName(4128)+"</span>" //高度:
+"<div class=\"col-m-8\"><input class=\"form-control\" id=\"height_"+theId+"\" type=\"text\" placeholder=\""+SystemEnv.getHtmlNoteName(4586)+"\"/></div>" //如:175,此处缺省为插件高度
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\">"+SystemEnv.getHtmlNoteName(4191)+"</span>" //宽度:
+"<div class=\"col-m-8\"><input class=\"form-control\" id=\"width_"+theId+"\" type=\"text\" placeholder=\""+SystemEnv.getHtmlNoteName(4229)+"\"/></div>" //如:320,此处缺省则为页面宽度
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control\"></span>"
+"<div id=\"MADChart2_Tip\" class=\"col MADChart2_Tip"+styleL+"\">"+SystemEnv.getHtmlNoteName(4230)+"</div>" //提示:高度和宽度默认为1:2时显示最佳
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label1"+styleL+"\">"+SystemEnv.getHtmlNoteName(4129)+"</span>" //延迟加载:
+"<div class=\"col-2 pd-4\"><input type=\"checkbox\" id=\"lazyLoad_"+theId+"\"/></div>"
+"</div>"
+"</div>"
+"<div id=\"MADChart2_PercentViewTitle\" class=\"title\">"
+SystemEnv.getHtmlNoteName(4231) //百分比显示信息
+"</div>"
+"<div id=\"MADChart2_PercentViewContent\" class=\"form-group\">"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\" >"+SystemEnv.getHtmlNoteName(4196)+"</span>" //字体:
+"<div class=\"col-2\"><input class=\"form-control\" id=\"title_font_"+theId+"\" type=\"text\"/></div>"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\" style=\"width: 39px;\">"+SystemEnv.getHtmlNoteName(4197)+"</span>" //颜色:
+"<div class=\"col-2\"><input class=\"form-control\" id=\"title_color_"+theId+"\" type=\"text\" /></div>"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\" style=\"width: 39px;\">"+SystemEnv.getHtmlNoteName(4198)+"</span>" //大小:
+"<div class=\"col-2\"><input class=\"form-control\" id=\"title_fontsize_"+theId+"\" type=\"text\"/></div>"
+"<span class=\"col pd-7\" style=\"font-size:12px;\"> PX</span>"
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label1"+styleL+"\">"+SystemEnv.getHtmlNoteName(4199)+"</span>" //是否粗体:
+"<div class=\"col-2 pd-4\"><input id=\"title_fontweight_"+theId+"\" type=\"checkbox\" value=\"bold\"/></div>"
+"</div>"
+"</div>"
+ "<div id=\"MADChart2_LineInfoTitle\" class=\"title\" style=\"position: relative;\">"
+ SystemEnv.getHtmlNoteName(4232) //线条信息
+ "</div>"
+"<div id=\"MADChart2_LineInfoContent\" class=\"form-group\">"
+"<div id=\"MADChart2_LineSizeContent\" class=\"row\">"
+ "<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\" style=\"width:72px;\">"+SystemEnv.getHtmlNoteName(4233)+"</span>" //线条大小:
+ "<div class=\"col-4\"><input class=\"form-control\" id=\"line_size_"+theId+"\" type=\"text\"/></div>"
+ "<span id=\"MADChart2_Line_Size_Tip\" class=\"col pd-7\" style=\"margin-left:5px;\">"+SystemEnv.getHtmlNoteName(4234)+"</span>" //提示:线条大小默认为5
+"</div>"
+"<div class=\"row\" id=\"MADChart2_LineBGColorContent\" style=\"display:none;\">"
+ "<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\" >"+SystemEnv.getHtmlNoteName(4638)+"</span>" //线条背景色:
+ "<div class=\"col-4\"><input class=\"form-control\" id=\"lineBG_color_"+theId+"\" type=\"text\" /></div>"
+ "<button name=\"lineColorpick\" class=\"lineColorBox\" type=\"button\" title=\""+SystemEnv.getHtmlNoteName(4236)+"\" style=\"position:absolute;\"/>" //取色器
+"</div>"
+"</div>"
+ "<div class=\"row title\" style=\"position: relative;\">"
+ "<div class=\"col-m-8\">" +SystemEnv.getHtmlNoteName(4237) + "</div>" //线条渐变色
+ "<div class=\"col-4 add-before\" onclick=\"MADChart2_AddColorItem('line','"+theId+"');\">"+SystemEnv.getHtmlNoteName(3518)+"</div>" //添加
+ "</div>"
+ "<div id=\"MADChart2_lineColorView\" class=\"MADChart2_ColorView\">"
+ "<div class=\"tip-control chart2_linecolor_empty_Tip\">"+SystemEnv.getHtmlNoteName(4238)+"</div>" //单击右上角的添加按钮以添加渐变色
+ "<ul></ul>"
+ "</div>"
+ "<div id=\"MADChart2_shadowColorTitle\" class=\"row title\" style=\"position: relative;\">"
+ "<div class=\"col-m-8\">" + SystemEnv.getHtmlNoteName(4239) + "</div>" //阴影渐变色
+ "<div class=\"col-4 add-before\" onclick=\"MADChart2_AddColorItem('shadow','"+theId+"');\">"+SystemEnv.getHtmlNoteName(3518)+"</div>" //添加
+ "</div>"
+ "<div id=\"MADChart2_shadowColorView\" class=\"MADChart2_ColorView\">"
+ "<div class=\"chart2_shadowcolor_empty_Tip\">"+SystemEnv.getHtmlNoteName(4238)+"</div>" //单击右上角的添加按钮以添加渐变色
+ "<ul></ul>"
+ "</div>"
+"<div class=\"title\">"
+ SystemEnv.getHtmlNoteName(4200) //图表数据来源
+"</div>"
+"<div class=\"form-group\">"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_DataSource_Label"+styleL+"\">"+SystemEnv.getHtmlNoteName(4201)+"</span>" //数据源:
+"<div class=\"col-4\"><select class=\"form-control\" id=\"datasource_"+theId+"\">"
+" <option value=\"\">(local)</option>"
+"</select></div>"
+"</div>"
+"<div class=\"row\">"
+"<span class=\"col-2 span-control MADChart2_BaseInfo_Label"+styleL+"\">SQL:</span>"
+"<div class=\"col-m-8\"><textarea class=\"area-control\" id=\"sql_"+theId+"\" placeholder=\""+tip+"\"></textarea>" //SQL格式说明请点击SQL帮助,此处可以使用页面跳转时传递过来的参数,即:{参数名称}
+"<a class=\"help-link\" href=\"javascript:void(0);\" onclick=\"MADChart2_OpenSQLHelp();\">"+SystemEnv.getHtmlNoteName(4202)+"</a></div>" //如何书写SQL?
+"</div>"
+"</div>"
+"<div class=\"bottom\"><div class=\"save-btn\" onclick=\"refreshMecDesign('"+theId+"');\">"+SystemEnv.getHtmlNoteName(3451)+"</div></div>" //确定
+"</div>";
htm += "<div class=\"MAD_Alert\">"+SystemEnv.getHtmlNoteName(4115)+"</div>"; //已生成到布局
return htm;
};
/*构建属性编辑窗体完成后调用此方法,主要用于一些必须要使用js对页面进行后置操作时,无需要此方法可至空。 不必需的方法,有此方法系统自动调用*/
MEC_NS.Chart2.prototype.afterAttrDlgBuild = function(){
var theId = this.id;
$("#charttype_" + theId).val(this.mecJson["charttype"]);
$("#charttype_" + theId).change();
$("#height_" + theId).val(this.mecJson["height"]);
$("#width_" + theId).val(Mec_FiexdUndefinedVal(this.mecJson["width"]));
$("#lineBG_color_" + theId).val(this.mecJson["linebgcolor"]);
$("#line_size_" + theId).val(this.mecJson["linesize"]);
var lazyLoad = Mec_FiexdUndefinedVal(this.mecJson["lazyLoad"]);
if(lazyLoad == "1"){
$("#lazyLoad_"+theId).checked();
}
$("#title_" + theId).val(this.mecJson["title"]);
$("#title_font_" + theId).val(this.mecJson["title_font"]);
$("#title_color_" + theId).val(this.mecJson["title_color"]);
$("#title_fontsize_" + theId).val(this.mecJson["title_fontsize"]);
var title_fontweight = this.mecJson["title_fontweight"];
if(title_fontweight == "bold"){
$("#title_fontweight_" + theId).checked();
}
//动态获取数据源的值,并给数据源添加HTML
$("#datasource_" + theId).val(this.mecJson["datasource"]);
MADChart2_setDataSourceHTML(theId,this.mecJson["datasource"]);
var $sql = $("#sql_" + theId);
$sql[0].value = this.mecJson["sql"];
$("#valuesuffix_" + theId).val(this.mecJson["valuesuffix"]);
$sql.focus(function(){
$(this).addClass("MADChart2_Textarea_Focus");
});
$sql.blur(function(){
$(this).removeClass("MADChart2_Textarea_Focus");
});
var $attrContainer = $("#MADChart2_" + theId);
$(".lineColorBox", $attrContainer).css('background-color', this.mecJson["linebgcolor"]);
$("#lineBG_color_" + theId).keyup(function(){
$(".lineColorBox", $attrContainer).css('background-color', $(this).val().trim());
});
$(".lineColorBox", $attrContainer).colpick({
colorScheme:'dark',
layout:'rgbhex',
color:'007aff',
onSubmit:function(hsb,hex,rgb,el) {
var colorValue = "#" + hex;
$("#lineBG_color_"+theId).val(colorValue);
$(el).css('background-color', colorValue);
$(el).colpickHide();
}
});
var line_gradient = this.mecJson["line_gradient"];
var shadow_gradient = this.mecJson["shadow_gradient"];
if(!line_gradient){
line_gradient = [];
}
if(line_gradient.length == 0){
$(".chart2_linecolor_empty_Tip", $attrContainer).show();
}
if(!shadow_gradient){
shadow_gradient = [];
}
if(shadow_gradient.length == 0){
$(".chart2_shadowcolor_empty_Tip", $attrContainer).show();
}
var lg_length = line_gradient.length;
var sd_length = shadow_gradient.length;
for(var i = 0; i < lg_length; i++){
MADChart2_AddColorItem("line", theId, line_gradient[i]);
}
for(var i = 0; i < sd_length; i++){
MADChart2_AddColorItem("shadow", theId, shadow_gradient[i]);
}
var $c_li = $(".MADChart2_ColorView > ul > li", $attrContainer);
$c_li.each(function(){
MADChart2_bindEventOnCLi(this);
});
$("#MADChart2_"+theId).checkbox();
$("#MADChart2_"+theId + " .MADChart2_ColorView > ul").sortable({
revert: false,
axis: "y",
items: "li",
handle: ".bemove"
});
};
/*获取JSON*/
MEC_NS.Chart2.prototype.getMecJson = function(){
var theId = this.id;
this.mecJson["id"] = theId;
this.mecJson["mectype"] = this.type;
var $attrContainer = $("#MADChart2_"+theId);
if($attrContainer.length > 0){
var charttype = $("#charttype_" + theId).val();
var height = $("#height_" + theId).val().trim();
var width = $("#width_" + theId).val().trim();
var linebgcolor = $("#lineBG_color_" + theId).val().trim();
var linesize = $("#line_size_" + theId).val().trim();
var lazyLoad = $("#lazyLoad_"+theId).is(':checked') ? "1" : "0";
var title = $("#title_" + theId).val();
var title_font = $("#title_font_" + theId).val();
var title_color = $("#title_color_" + theId).val();
var title_fontsize = $("#title_fontsize_" + theId).val();
var title_fontweight = $("#title_fontweight_" + theId).is(':checked') ? "bold" : "normal";
var datasource = $("#datasource_" + theId).val();
var sql = $("#sql_" + theId).val();
var valuesuffix = $("#valuesuffix_" + theId).val();
var line_gradient = [];
var shadow_gradient = [];
var $line_li = $("#MADChart2_lineColorView > ul > li", $attrContainer);
$line_li.each(function(){
var offset = $("input[name=offset]", $(this)).val().trim();
var stopColor = $("input[name=stopColor]", $(this)).val().trim();
line_gradient.push({
"offset" : offset,
"stop-color" : stopColor
});
});
$shadow_li = $("#MADChart2_shadowColorView > ul > li", $attrContainer);
$shadow_li.each(function(){
var offset = $("input[name=offset]", $(this)).val().trim();
var stopColor = $("input[name=stopColor]", $(this)).val().trim();
var stopOpacity = $("input[name=stopOpacity]", $(this)).val().trim();
shadow_gradient.push({
"offset" : offset,
"stop-color" : stopColor,
"stop-opacity" : stopOpacity
});
});
this.mecJson["line_gradient"] = line_gradient;
this.mecJson["shadow_gradient"] = shadow_gradient;
this.mecJson["charttype"] = charttype;
this.mecJson["height"] = height;
this.mecJson["width"] = width;
this.mecJson["linebgcolor"] = linebgcolor;
this.mecJson["linesize"] = linesize;
this.mecJson["lazyLoad"] = lazyLoad;
this.mecJson["title"] = title;
this.mecJson["title_font"] = title_font;
this.mecJson["title_color"] = title_color;
this.mecJson["title_fontsize"] = title_fontsize;
this.mecJson["title_fontweight"] = title_fontweight;
this.mecJson["datasource"] = datasource;
this.mecJson["sql"] = sql;
}
return this.mecJson;
};
MEC_NS.Chart2.prototype.getDefaultMecJson = function(){
var theId = this.id;
var defMecJson = {};
defMecJson["id"] = theId;
defMecJson["mectype"] = this.type;
defMecJson["charttype"] = "LineGraph";
defMecJson["height"] = "";
defMecJson["linebgcolor"] = "#24303a";
defMecJson["linesize"] = "";
line_gradient = [];
line_gradient.push({"offset":"0", "stop-color":"#954ce9"});
line_gradient.push({"offset":"1", "stop-color":"#24c1ed"});
defMecJson["line_gradient"] = line_gradient;
shadow_gradient = [];
shadow_gradient.push({"offset":"0", "stop-color":"rgba(149, 76, 233, 1)", "stop-opacity":"0.07"});
shadow_gradient.push({"offset":"0.5", "stop-color":"rgba(149, 76, 233, 1)", "stop-opacity":"0.13"});
shadow_gradient.push({"offset":"1", "stop-color":"rgba(149, 76, 233, 1)", "stop-opacity":"0"});
defMecJson["shadow_gradient"] = shadow_gradient;
defMecJson["title"] = "";
defMecJson["title_font"] = "Verdana";
defMecJson["title_color"] = "black";
defMecJson["title_fontsize"] = "30";
defMecJson["title_fontweight"] = "bold";
defMecJson["datasource"] = "";
defMecJson["sql"] = "";
defMecJson["valuesuffix"] = "";
return defMecJson;
};
function MADChart2_OpenSQLHelp(){
var url = "/mobilemode/admin/dialog/chart2SQLHelp.jsp";
var dlg = top.createTopDialog();//获取Dialog对象
dlg.Model = true;
dlg.Width = 570;//定义长度
dlg.Height = 555;
dlg.URL = url;
dlg.Title = SystemEnv.getHtmlNoteName(4204); //SQL帮助
dlg.show();
}
function MADChart2_setDataSourceHTML(mec_id,val){
var $MADL_DataSource = $("#datasource_" + mec_id);
var url = jionActionUrl("com.weaver.formmodel.mobile.servlet.MobileAppBaseAction", "action=getDataSource");
FormmodeUtil.doAjaxDataLoad(url, function(datas){
for(var i = 0; i < datas.length; i++){
var data = datas[i];
var pointid = data;
var selected = "";
if (pointid=="" || typeof(pointid)=="undefined") continue;
if (pointid == val) selected = "selected";
var dataSourceSelectHtml = "<option value=\""+pointid+"\" "+selected+">";
dataSourceSelectHtml += pointid;
dataSourceSelectHtml += "</option>";
$MADL_DataSource.append(dataSourceSelectHtml);
}
});
}
function MADChart2_ChangeType(mec_id, o){
var $attrContainer = $("#MADChart2_" + mec_id);
var val = $(o).val();
if(val == "LineGraph"){
$("#height_" + mec_id).keyup(function(){
var height = parseInt($(this).val());
$("#width_" + mec_id).val(height * 2);
});
$("#MADChart2_Line_Size_Tip", $attrContainer).html(SystemEnv.getHtmlNoteName(4240)).show(); //提示:线条大小默认为1.5
$("#MADChart2_Tip", $attrContainer).show();
$("#MADChart2_PercentViewTitle", $attrContainer).hide();
$("#MADChart2_PercentViewContent", $attrContainer).hide();
$("#MADChart2_shadowColorView", $attrContainer).show();
$("#MADChart2_shadowColorTitle", $attrContainer).show();
}else{
$("#MADChart2_Line_Size_Tip", $attrContainer).html(SystemEnv.getHtmlNoteName(4234)).show(); //提示:线条大小默认为5
$("#MADChart2_LineSizeContent", $attrContainer).show();
$("#MADChart2_Tip", $attrContainer).hide();
$("#MADChart2_PercentViewTitle", $attrContainer).show();
$("#MADChart2_PercentViewContent", $attrContainer).show();
$("#MADChart2_shadowColorView", $attrContainer).hide();
$("#MADChart2_shadowColorTitle", $attrContainer).hide();
$("#MADChart2_LineBGColorContent", $attrContainer).show();
}
}
function MADChart2_AddColorItem(type, mec_id, data){
var $attrContainer = $("#MADChart2_" + mec_id);
$(".chart2_" + type + "color_empty_Tip", $attrContainer).hide();
var offset = "";
var stopColor = "";
var stopOpacity = "";
if(data){
offset = Mec_FiexdUndefinedVal(data["offset"]);
stopColor = Mec_FiexdUndefinedVal(data["stop-color"]);
stopOpacity = Mec_FiexdUndefinedVal(data["stop-opacity"]);
}
var $ul = $("#MADChart2_"+type+"ColorView > ul", $attrContainer);
var $li = $("<li class=\"c_li\"></li>");
var htm = "<table class=\"table\">";
htm += "<tbody>";
htm += "<tr>";
htm += "<td class=\"bemove\" width=\"20px\"></td>";
htm += "<td width=\"105px\" valign=\"middle\">";
htm += "<input name=\"offset\" type=\"text\" title=\""+SystemEnv.getHtmlNoteName(4241)+"\" style=\"width: 95px;\" value=\"" + offset + "\" placeholder=\""+SystemEnv.getHtmlNoteName(4241)+"\"/>"; //偏移值(0-1)
htm += "</td>";
htm += "<td width=\"80px\">";
htm += "<input name=\"stopColor\" type=\"text\" title=\""+SystemEnv.getHtmlNoteName(4587)+"\" value=\"" + stopColor + "\" placeholder=\""+SystemEnv.getHtmlNoteName(4587)+"\"/>"; //渐变色
htm += "</td>";
htm += "<td width=\"30px\">";
htm += "<button name=\"colorpick\" class=\"colorBox\" type=\"button\" title=\""+SystemEnv.getHtmlNoteName(4236)+"\" style=\"background-color:" + stopColor + ";\"/>"; //取色器
htm += "</td>";
if(type == "shadow"){
htm += "<td width=\"75px\">";
htm += "<input name=\"stopOpacity\" type=\"text\" value=\"" + stopOpacity + "\" style=\"margin-left:5px;\" title=\""+SystemEnv.getHtmlNoteName(4243)+"(0-1)\" placeholder=\""+SystemEnv.getHtmlNoteName(4243)+"\"/>"; //透明度
htm += "</td>";
}
htm += "<td align=\"right\">";
htm += "<span class=\"del-before hide\" title=\""+SystemEnv.getHtmlNoteName(3519)+"\" onclick=\"MADChart2_deleteOneItemOnPage('" + mec_id + "',this, '" + type + "')\"></span>"; //删除
htm += "</td>";
htm += "</tr>";
htm += "</tbody>";
htm += "</table>";
$($li.html(htm));
$ul.append($li);
MADChart2_bindEventOnCLi($li);
}
function MADChart2_bindEventOnCLi(obj){
var $li = $(obj);
$(".colorBox", $li).colpick({
colorScheme:'dark',
layout:'rgbhex',
color:'007aff',
onSubmit:function(hsb,hex,rgb,el) {
var eleId = $(el).attr("id");
var colorValue = "#" + hex;
$("input[name=stopColor]", $li).val(colorValue);
$(el).css('background-color', colorValue);
$(el).colpickHide();
}
});
var $stopColor = $("input[name=stopColor]", $li);
$stopColor.on("keyup", function(){
var stopColor = $("input[name=stopColor]", $li).val().trim();
$("button[name=colorpick]", $li).css("background-color", stopColor);
});
}
function MADChart2_deleteOneItemOnPage(mec_id, obj, type){
var msg = SystemEnv.getHtmlNoteName(4244); //确定删除?
confirm(msg, function() {
$(obj).closest(".c_li").remove();
var $attrContainer = $("#MADChart2_" + mec_id);
if($("#MADChart2_"+type+"ColorView > ul > li", $attrContainer).length == 0){
$(".chart2_" + type + "color_empty_Tip").show();
}
});
}