creating a show table beginning
This commit is contained in:
parent
a4c97479b6
commit
803409f151
|
@ -173,19 +173,6 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
var template,
|
var template,
|
||||||
$el;
|
$el;
|
||||||
|
|
||||||
/*
|
|
||||||
template =
|
|
||||||
"<li " +
|
|
||||||
"data-instance='<%= instance %>' " +
|
|
||||||
"data-starts='<%= starts %>' " +
|
|
||||||
"data-ends='<%= ends %>'" +
|
|
||||||
">" +
|
|
||||||
"<span><%= name %></span>" +
|
|
||||||
"<span><%= starts %></span>" +
|
|
||||||
"<span><%= ends %></span>" +
|
|
||||||
"</li>";
|
|
||||||
*/
|
|
||||||
|
|
||||||
template =
|
template =
|
||||||
"<h3 " +
|
"<h3 " +
|
||||||
"data-instance='<%= instance %>' " +
|
"data-instance='<%= instance %>' " +
|
||||||
|
@ -206,6 +193,12 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
return $el;
|
return $el;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//$el is the div in the accordian we should create the table on.
|
||||||
|
function createShowTable($el) {
|
||||||
|
|
||||||
|
oTableShow = itemHistoryTable("history_table_list");
|
||||||
|
}
|
||||||
|
|
||||||
function drawShowList(oShows) {
|
function drawShowList(oShows) {
|
||||||
var $showList = $historyContentDiv.find("#history_show_summary"),
|
var $showList = $historyContentDiv.find("#history_show_summary"),
|
||||||
i,
|
i,
|
||||||
|
@ -408,6 +401,7 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
oBaseTimePickerSettings,
|
oBaseTimePickerSettings,
|
||||||
oTableAgg,
|
oTableAgg,
|
||||||
oTableItem,
|
oTableItem,
|
||||||
|
oTableShow,
|
||||||
$hisDialogEl,
|
$hisDialogEl,
|
||||||
|
|
||||||
tabsInit = [
|
tabsInit = [
|
||||||
|
|
Loading…
Reference in New Issue