var $assetselector = function (id) { this.containerId = id; this.title = GetTextByKey("P_SELECTASSETS", 'Select Assets'); this.companyId = null; this.jobsiteId = null; this.forceSingle = false; this.exceptSource = null; this.exceptShareAsset = false; this.onOK = null; this.onDialogClosed = null; this.includechild = true; this.allowhidden = true; this.allowotherfilter = true; this.uid = null; }; (function () { var __proto = $assetselector.prototype; function initMachinesGrid(parent) { var gv = GridView; if (typeof GridView1 !== 'undefined')//兼容FIC的旧的GridView gv = GridView1 var grid = new gv(parent); grid.langs = { all: GetTextByKey("P_GRID_ALL", "(All)"), ok: GetTextByKey("P_GRID_OK", "OK"), reset: GetTextByKey("P_GRID_RESET", "Reset") }; var styleFilter = function (item) { if (item.Suggested) { return { //'background-color': 'yellow', 'display': 'block', 'margin': 0, 'box-sizing': 'border-box', 'padding': '0 4px', 'height': '27px', 'line-height': '27px', 'overflow': 'hidden', 'text-overflow': 'ellipsis' }; } }; var bgFilter = function (item) { if (item.Suggested) return 'yellow'; }; var columns = []; if (!this.forceSingle) { columns.push({ // checkbox name: 'check', key: 'Selected', width: 45, align: 'center', sortable: false, allcheck: true, type: 3 }); } columns.push({ key: 'VIN', caption: GetTextByKey("P_SELECTASSETS_VIN", 'VIN'), width: 160, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'Name', caption: GetTextByKey("P_SELECTASSETS_NAME", 'Name'), width: 160, styleFilter: styleFilter, bgFilter: bgFilter }); if (this.jobsiteId != null) { columns.push( { key: 'Suggested', caption: GetTextByKey("P_SELECTASSETS_CURRENTSTATE", 'Current State'), width: 110, allowFilter: true, filter: function (item) { return item.Suggested ? GetTextByKey("P_SELECTASSETS_SUGGESTED", 'SUGGESTED') : GetTextByKey("P_SELECTASSETS_UNASSIGNED", 'UNASSIGNED'); }, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'DistanceFromSite', caption: GetTextByKey("P_SELECTASSETS_DISTANCEFROMSITE", 'Distance From Site'), align: 'right', width: 130, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'DistanceUnits', caption: GetTextByKey("P_SELECTASSETS_UNITS", 'Units'), width: 80, allowFilter: true, styleFilter: styleFilter, bgFilter: bgFilter } ); } columns.push( { key: 'MakeName', caption: GetTextByKey("P_SELECTASSETS_MAKE", 'Make'), width: 120, allowFilter: true, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'ModelName', caption: GetTextByKey("P_SELECTASSETS_MODEL", 'Model'), width: 120, allowFilter: true, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'TypeName', caption: GetTextByKey("P_SELECTASSETS_TYPE", 'Type'), width: 120, allowFilter: true, styleFilter: styleFilter, bgFilter: bgFilter } ); if (this.jobsiteId == null) { columns.push( { key: 'AcquisitionType', caption: GetTextByKey("P_MA_ACQUISITIONTYPE", "Acquisition Type"), width: 120, allowFilter: true, styleFilter: styleFilter, bgFilter: bgFilter }, { key: 'AssetGroups', caption: GetTextByKey("P_JS_ASSETGROUP", "Asset Group"), width: 160, allowFilter: false, styleFilter: styleFilter, bgFilter: bgFilter, filter: function (item) { if (item.AssetGroups) return item.AssetGroups.join(", "); else return ""; } }, { key: 'Jobsites', caption: GetTextByKey("P_JOBSITE", "Jobsite"), width: 160, allowFilter: false, styleFilter: styleFilter, bgFilter: bgFilter, filter: function (item) { if (item.Jobsites && item.Jobsites.length > 0) { var r = ""; for (var i = 0; i < item.Jobsites.length; i++) { r += item.Jobsites[i].Key; if (item.Jobsites[i].Value && item.Jobsites[i].Value != "") r += "(" + item.Jobsites[i].Value + ")"; r += ", "; } r = r.substring(0, r.length - 2); return r; } else return ""; } } ); } //grid.canMultiSelect = true; grid.columns = columns; grid.init(); this.gridAssets = grid; } function createDialog() { var dialog = $('