//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Wyatt Flores','The Cotillion','Wichita, KS','Tuesday','6/23/2026','8:00 PM','7825583','Wyatt-Flores-6-23-2026'],['Country Stampede: Treaty Oak Revival, Wyatt Flores & Presley and Taylor - Thursday (Time: TBD)','Azura Amphitheater','Bonner Springs, KS','Thursday','6/25/2026','4:30 PM','7271768','Country-Stampede--Treaty-Oak-Revival--Wyatt-Flores---Presley-and-Taylor---Thursday--Time--TBD--6-25-2026'],['The Jack Wharff Band & Wyatt Flores','The Goat Ranch','South Greenfield, MO','Friday','6/26/2026','7:00 PM','7584179','The-Jack-Wharff-Band---Wyatt-Flores-6-26-2026'],['Festival D'ete De Quebec: The Lumineers, Wyatt Flores & The Barr Brothers','Plains Of Abraham','Quebec, Canada','Friday','7/10/2026','7:00 PM','7799191','Festival-D-ete-De-Quebec--The-Lumineers--Wyatt-Flores---The-Barr-Brothers-7-10-2026'],['Wyatt Flores','Menard County Fairgrounds','Petersburg, IL','Friday','7/17/2026','8:00 PM','7905766','Wyatt-Flores-7-17-2026'],['Wyatt Flores','Adams County Fairgrounds - NE','Hastings, NE','Saturday','7/18/2026','8:00 PM','7811682','Wyatt-Flores-7-18-2026'],['Cheyenne Frontier Nights: The Red Clay Strays & Wyatt Flores','Cheyenne Frontier Days Arena','Cheyenne, WY','Sunday','7/19/2026','8:00 PM','7295705','Cheyenne-Frontier-Nights--The-Red-Clay-Strays---Wyatt-Flores-7-19-2026'],['Wyatt Flores','Deadwood Mountain Grand Hotel & Casino','Deadwood, SD','Tuesday','7/21/2026','9:00 PM','7699892','Wyatt-Flores-7-21-2026'],['Headwaters Country Jam: Wyatt Flores, Clint Black, & Gavin Adcock - 3 Day Pass','The Bridge at Three Forks','Cardwell, MT','Thursday','7/23/2026','TBD','7545664','Headwaters-Country-Jam--Wyatt-Flores--Clint-Black----Gavin-Adcock---3-Day-Pass-7-23-2026'],['XRoads41: Wiz Khalifa, Lainey Wilson & Jason Aldean - 3 Day Pass','XRoads41 Festival Grounds','Oshkosh, WI','Thursday','8/6/2026','TBD','7556260','XRoads41--Wiz-Khalifa--Lainey-Wilson---Jason-Aldean---3-Day-Pass-8-6-2026']],'Wyatt Flores','https://www.ticketnetwork.com');