define(['modules/sections/section', 'modules/sections/addsection'], function (Section, AddSection) { var gs = {}; gs.title = GetTextByKey("P_GLOBALSECTIONS", 'Global Sections'); gs.description = GetTextByKey("P_GLOBALSECTIONS", 'Global Sections'); gs.version = '1.0'; var datacontent = null; gs.createContent = function (sections) { templatereadonly = false; editable = true; sectiontype = 0;//sectiontype:0 - global,1 - normal templatestatus = 0;//templatestatus:0 - draft,1 - published var content = $('
'); function createHeader() { var header = $('
'); header.append($('
').text(gs.title)); setPageTitle(gs.title, true); //var search_bar = $(''); //header.append(search_bar); //header.append(''); //var btnRefresh = $(''); //header.append(btnRefresh); //btnRefresh.click(function () { // gs.refresh(); //}); var func = $('
'); var iconAdd = $('' + GetTextByKey("P_IPT_ADD", "Add") + '').click(function () { gs.addSection(); }); func.append(iconAdd); var iconRefresh = $('' + GetTextByKey("P_IPT_REFRESH", "Refresh") + '').click(function () { gs.refresh(); }); func.append(iconRefresh); header.append(func) return header; } content.append(createHeader()); var dataheader = $('
'); dataheader.append('
'); dataheader.append('
' + GetTextByKey("P_IPT_NAME", "Name") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_DISPLAYTEXT", "Display Text") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_TYPE", "Type") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_REQUIRED", "Required") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_XXX", "Include Comment") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_ISIMPORTANT", "Is Important") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_CUSTOMERVISIBLE", "Customer Visible") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_SEVERITYLEVEL", "Severity Level") + '
'); dataheader.append('
' + GetTextByKey("P_IPT_NOTES", "Notes") + '
'); if (sectiontype === 0) dataheader.append('
' + GetTextByKey("P_IPT_CREATEDBY", "Created By") + '
'); dataheader.append('
'); content.append(dataheader); datacontent = $('
'); content.append(datacontent); //setTimeout(function () { // gs.resize(); //}); //$(window).resize(function () { // gs.resize(); //}); if (sections) { for (var i = 0; i < sections.length; i++) { var s = new Section(sections[i], gs); datacontent.append(s.createContent()); } } else this.refresh(); return content; } gs.resize = function () { datacontent.css("height", document.documentElement.clientHeight - datacontent.offset().top) } gs.addSection = function () { var s = new AddSection(gs); $('#right_popup').empty().append(s.createContent()); showRightPopup(true); } gs.refresh = function () { datacontent.empty(); inspectionrequest("GetGlobalSections", teamintelligence, function (data) { datacontent.empty(); if (data) { for (var i = 0; i < data.length; i++) { var s = new Section(data[i], gs); datacontent.append(s.createContent()); } } }, function (err) { }); } return gs; });