Authored by lingmin

dialog update

@@ -74,6 +74,13 @@ @@ -74,6 +74,13 @@
74 } 74 }
75 var dialogDiv = $("<div>").addClass("modal-dialog").css(opt.style).addClass(opt.size ? opt.size : "").attr("role", "document").appendTo(self); 75 var dialogDiv = $("<div>").addClass("modal-dialog").css(opt.style).addClass(opt.size ? opt.size : "").attr("role", "document").appendTo(self);
76 var contentDiv = $("<div>").addClass("modal-content").append(header).append(body).append(footer).appendTo(dialogDiv); 76 var contentDiv = $("<div>").addClass("modal-content").append(header).append(body).append(footer).appendTo(dialogDiv);
  77 + if (opt.height) {
  78 + body.css("height", opt.height);
  79 + }
  80 + if (opt.width) {
  81 + contentDiv.css("width", opt.width);
  82 + }
  83 +
77 84
78 self.on("show.bs.modal", function(e) { 85 self.on("show.bs.modal", function(e) {
79 if (opt.onBeforeShow) { 86 if (opt.onBeforeShow) {
@@ -206,21 +206,23 @@ @@ -206,21 +206,23 @@
206 } 206 }
207 } 207 }
208 editBtn.click(function () { 208 editBtn.click(function () {
  209 + if(content != ""){
209 var dialog = $("<div>").appendTo($("body")); 210 var dialog = $("<div>").appendTo($("body"));
210 dialog.dialog({ 211 dialog.dialog({
211 - backdrop: "static",  
212 - title: "异常详情",  
213 - content: content,  
214 - height: "60%",  
215 - width: "50%",  
216 - buttons: [{  
217 - text: "关闭",  
218 - className: "btn-danger",  
219 - onclick: function () { 212 + backdrop : "static",
  213 + title : "异常详情",
  214 + content : content,
  215 + height : "700px",
  216 + width : "1100px",
  217 + buttons : [{
  218 + text : "关闭",
  219 + className : "btn-danger",
  220 + onclick : function() {
220 $(dialog).dialog("hide"); 221 $(dialog).dialog("hide");
221 } 222 }
222 }] 223 }]
223 }); 224 });
  225 + }
224 }); 226 });
225 return div; 227 return div;
226 } 228 }
@@ -296,21 +298,23 @@ @@ -296,21 +298,23 @@
296 } 298 }
297 } 299 }
298 editBtn.click(function () { 300 editBtn.click(function () {
  301 + if(content != ""){
299 var dialog = $("<div>").appendTo($("body")); 302 var dialog = $("<div>").appendTo($("body"));
300 dialog.dialog({ 303 dialog.dialog({
301 - backdrop: "static",  
302 - title: "异常详情",  
303 - content: content,  
304 - height: "60%",  
305 - width: "50%",  
306 - buttons: [{  
307 - text: "关闭",  
308 - className: "btn-danger",  
309 - onclick: function () { 304 + backdrop : "static",
  305 + title : "异常详情",
  306 + content : content,
  307 + height : "700px",
  308 + width : "1100px",
  309 + buttons : [{
  310 + text : "关闭",
  311 + className : "btn-danger",
  312 + onclick : function() {
310 $(dialog).dialog("hide"); 313 $(dialog).dialog("hide");
311 } 314 }
312 }] 315 }]
313 }); 316 });
  317 + }
314 }); 318 });
315 return div; 319 return div;
316 } 320 }
@@ -124,8 +124,8 @@ @@ -124,8 +124,8 @@
124 backdrop: "static", 124 backdrop: "static",
125 title: "异常详情", 125 title: "异常详情",
126 content: content, 126 content: content,
127 - height: "60%",  
128 - width: "50%", 127 + height : "700px",
  128 + width : "1100px",
129 buttons: [{ 129 buttons: [{
130 text: "关闭", 130 text: "关闭",
131 className: "btn-danger", 131 className: "btn-danger",
@@ -210,8 +210,8 @@ @@ -210,8 +210,8 @@
210 backdrop: "static", 210 backdrop: "static",
211 title: "异常详情", 211 title: "异常详情",
212 content: content, 212 content: content,
213 - height: "60%",  
214 - width: "50%", 213 + height : "700px",
  214 + width : "1100px",
215 buttons: [{ 215 buttons: [{
216 text: "关闭", 216 text: "关闭",
217 className: "btn-danger", 217 className: "btn-danger",
@@ -346,14 +346,16 @@ @@ -346,14 +346,16 @@
346 content= content +rowData.errorInfo[i]+"<br><br>"; 346 content= content +rowData.errorInfo[i]+"<br><br>";
347 } 347 }
348 } 348 }
  349 +
349 editBtn.click(function () { 350 editBtn.click(function () {
  351 + if(content != ""){
350 var dialog = $("<div>").appendTo($("body")); 352 var dialog = $("<div>").appendTo($("body"));
351 dialog.dialog({ 353 dialog.dialog({
352 backdrop : "static", 354 backdrop : "static",
353 title : "异常详情", 355 title : "异常详情",
354 content : content, 356 content : content,
355 - height : "80%",  
356 - width : "60%", 357 + height : "700px",
  358 + width : "1100px",
357 buttons : [{ 359 buttons : [{
358 text : "关闭", 360 text : "关闭",
359 className : "btn-danger", 361 className : "btn-danger",
@@ -362,6 +364,7 @@ @@ -362,6 +364,7 @@
362 } 364 }
363 }] 365 }]
364 }); 366 });
  367 + }
365 }); 368 });
366 return div; 369 return div;
367 } 370 }
@@ -382,13 +385,14 @@ @@ -382,13 +385,14 @@
382 } 385 }
383 } 386 }
384 editBtn.click(function () { 387 editBtn.click(function () {
  388 + if(content != ""){
385 var dialog = $("<div>").appendTo($("body")); 389 var dialog = $("<div>").appendTo($("body"));
386 dialog.dialog({ 390 dialog.dialog({
387 backdrop : "static", 391 backdrop : "static",
388 title : "超时详情", 392 title : "超时详情",
389 content : content, 393 content : content,
390 - height : "80%",  
391 - width : "60%", 394 + height : "700px",
  395 + width : "1100px",
392 buttons : [{ 396 buttons : [{
393 text : "关闭", 397 text : "关闭",
394 className : "btn-danger", 398 className : "btn-danger",
@@ -397,6 +401,7 @@ @@ -397,6 +401,7 @@
397 } 401 }
398 }] 402 }]
399 }); 403 });
  404 + }
400 }); 405 });
401 return div; 406 return div;
402 } 407 }
@@ -460,13 +465,14 @@ @@ -460,13 +465,14 @@
460 } 465 }
461 } 466 }
462 editBtn.click(function () { 467 editBtn.click(function () {
  468 + if(content != ""){
463 var dialog = $("<div>").appendTo($("body")); 469 var dialog = $("<div>").appendTo($("body"));
464 dialog.dialog({ 470 dialog.dialog({
465 backdrop : "static", 471 backdrop : "static",
466 title : "异常详情", 472 title : "异常详情",
467 content : content, 473 content : content,
468 - height : "80%",  
469 - width : "60%", 474 + height : "700px",
  475 + width : "1100px",
470 buttons : [{ 476 buttons : [{
471 text : "关闭", 477 text : "关闭",
472 className : "btn-danger", 478 className : "btn-danger",
@@ -475,6 +481,7 @@ @@ -475,6 +481,7 @@
475 } 481 }
476 }] 482 }]
477 }); 483 });
  484 + }
478 }); 485 });
479 return div; 486 return div;
480 } 487 }
@@ -495,13 +502,14 @@ @@ -495,13 +502,14 @@
495 } 502 }
496 } 503 }
497 editBtn.click(function () { 504 editBtn.click(function () {
  505 + if(content != ""){
498 var dialog = $("<div>").appendTo($("body")); 506 var dialog = $("<div>").appendTo($("body"));
499 dialog.dialog({ 507 dialog.dialog({
500 backdrop : "static", 508 backdrop : "static",
501 title : "超时详情", 509 title : "超时详情",
502 content : content, 510 content : content,
503 - height : "80%",  
504 - width : "60%", 511 + height : "700px",
  512 + width : "1100px",
505 buttons : [{ 513 buttons : [{
506 text : "关闭", 514 text : "关闭",
507 className : "btn-danger", 515 className : "btn-danger",
@@ -510,6 +518,8 @@ @@ -510,6 +518,8 @@
510 } 518 }
511 }] 519 }]
512 }); 520 });
  521 + }
  522 +
513 }); 523 });
514 return div; 524 return div;
515 } 525 }
@@ -575,13 +585,14 @@ @@ -575,13 +585,14 @@
575 } 585 }
576 } 586 }
577 editBtn.click(function () { 587 editBtn.click(function () {
  588 + if(content != ""){
578 var dialog = $("<div>").appendTo($("body")); 589 var dialog = $("<div>").appendTo($("body"));
579 dialog.dialog({ 590 dialog.dialog({
580 backdrop : "static", 591 backdrop : "static",
581 title : "异常详情", 592 title : "异常详情",
582 content : content, 593 content : content,
583 - height : "80%",  
584 - width : "60%", 594 + height : "700px",
  595 + width : "1100px",
585 buttons : [{ 596 buttons : [{
586 text : "关闭", 597 text : "关闭",
587 className : "btn-danger", 598 className : "btn-danger",
@@ -590,6 +601,8 @@ @@ -590,6 +601,8 @@
590 } 601 }
591 }] 602 }]
592 }); 603 });
  604 + }
  605 +
593 }); 606 });
594 return div; 607 return div;
595 } 608 }
@@ -610,13 +623,14 @@ @@ -610,13 +623,14 @@
610 } 623 }
611 } 624 }
612 editBtn.click(function () { 625 editBtn.click(function () {
  626 + if(content != ""){
613 var dialog = $("<div>").appendTo($("body")); 627 var dialog = $("<div>").appendTo($("body"));
614 dialog.dialog({ 628 dialog.dialog({
615 backdrop : "static", 629 backdrop : "static",
616 title : "超时详情", 630 title : "超时详情",
617 content : content, 631 content : content,
618 - height : "80%",  
619 - width : "60%", 632 + height : "700px",
  633 + width : "1100px",
620 buttons : [{ 634 buttons : [{
621 text : "关闭", 635 text : "关闭",
622 className : "btn-danger", 636 className : "btn-danger",
@@ -625,6 +639,8 @@ @@ -625,6 +639,8 @@
625 } 639 }
626 }] 640 }]
627 }); 641 });
  642 + }
  643 +
628 }); 644 });
629 return div; 645 return div;
630 } 646 }