36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
/*
|
|
Copyright (c) 2023-forever Douglas Malnati. All rights reserved.
|
|
|
|
See the /faq/tos page for details.
|
|
|
|
(If this generated header is stamped on a file which is a 3rd party file or under a different license or copyright, then ignore this copyright statement and use that file's terms.)
|
|
*/
|
|
|
|
export class WsprSearchUiDataTableColumnOrder
|
|
{
|
|
static GetPriorityColList()
|
|
{
|
|
return [
|
|
"Pro",
|
|
"DateTimeUtc", "DateTimeLocal",
|
|
"RegSeen", "EncSeen",
|
|
"RegCall", "RegGrid", "RegPower", "RegLat", "RegLng",
|
|
"BtGpsValid", "BtGrid6", "BtGrid56", "BtLat", "BtLng", "BtVoltage", "BtTempF", "BtAltFt", "BtMPH", "BtTempC", "BtAltM", "BtKPH",
|
|
"Lat", "Lng", "Voltage",
|
|
"TempF", "AltFt", "AltChgFpm",
|
|
"MPH", "GpsMPH", "DistMi",
|
|
"TempC", "AltM", "AltChgMpm",
|
|
"KPH", "GpsKPH", "DistKm",
|
|
"SolAngle", "RxStationCount", "WinFreqDrift",
|
|
"UptimeMinutes", "GpsLockType", "GpsTryLockSeconds", "GpsSatsInViewCount", "TxFreqHzIdx", "TxFreqMhz",
|
|
"EbtGpsValid", "EbtVoltage", "EbtLat", "EbtLng", "EbtLatitudeIdx", "EbtLongitudeIdx", "EbtTempF", "EbtAltFt", "EbtTempC", "EbtAltM",
|
|
"HiResReference", "HiResLat", "HiResLng", "HiResLatitudeIdx", "HiResLongitudeIdx",
|
|
];
|
|
}
|
|
|
|
static Apply(td)
|
|
{
|
|
td.PrioritizeColumnOrder(this.GetPriorityColList());
|
|
}
|
|
}
|