[Common] Window: use alerts without icon.

[SSE] Debug sorting.
This commit is contained in:
Julia Radzhabova 2017-02-07 11:55:24 +03:00
parent b7b7787222
commit 4d34160697
3 changed files with 2 additions and 4 deletions

View file

@ -404,8 +404,8 @@ define([
if (!options.width) options.width = 'auto'; if (!options.width) options.width = 'auto';
var template = '<div class="info-box">' + var template = '<div class="info-box">' +
'<div class="icon img-commonctrl <%= iconCls %>" />' + '<% if (typeof iconCls !== "undefined") { %><div class="icon img-commonctrl <%= iconCls %>" /><% } %>' +
'<div class="text"><span><%= msg %></span>' + '<div class="text" <% if (typeof iconCls == "undefined") { %> style="padding-left:10px;" <% } %>><span><%= msg %></span>' +
'<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' + '<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' +
'</div>' + '</div>' +
'</div>' + '</div>' +

View file

@ -344,7 +344,6 @@ define([
width: 500, width: 500,
title: this.txtSorting, title: this.txtSorting,
msg: this.txtExpandSort, msg: this.txtExpandSort,
iconCls: 'warn',
buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'},
{caption: this.txtSortSelected, primary: true, value: 'sort'}, {caption: this.txtSortSelected, primary: true, value: 'sort'},
'cancel'], 'cancel'],

View file

@ -846,7 +846,6 @@ define([
width: 500, width: 500,
title: this.txtSorting, title: this.txtSorting,
msg: this.txtExpandSort, msg: this.txtExpandSort,
iconCls: 'warn',
buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'},
{caption: this.txtSortSelected, primary: true, value: 'sort'}, {caption: this.txtSortSelected, primary: true, value: 'sort'},
'cancel'], 'cancel'],