This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Sub ConvertToXlsx() | |
Dim wb As Workbook | |
Dim sh As Worksheet | |
Dim myPath As String | |
Dim myFile As String | |
Dim myExt As String | |
Dim myFileName As String | |
Dim NewWBName As String | |
Dim ChooseFolder As FileDialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load(event: TableLazyLoadEvent | undefined) { | |
let url = 'search='; | |
if (this.search.email) { | |
url = url + ',email~' + (this.search.email || ''); | |
} | |
if (this.search.firstPhone) { | |
url = url + ',firstPhone~' + (this.search.firstPhone || ''); | |
} | |
if (this.search.lastName) { | |
url = url + ',lastName~' + (this.search.lastName || ''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server.compression.enabled=true | |
server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json | |
server.compression.min-response-size=1024 |