org.apache.hadoop.yarn.webapp.view.JQueryUI.postInitID()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(8.5k)|赞(0)|评价(0)|浏览(57)

本文整理了Java中org.apache.hadoop.yarn.webapp.view.JQueryUI.postInitID()方法的一些代码示例,展示了JQueryUI.postInitID()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JQueryUI.postInitID()方法的具体详情如下:
包路径:org.apache.hadoop.yarn.webapp.view.JQueryUI
类名称:JQueryUI
方法名:postInitID

JQueryUI.postInitID介绍

暂无

代码示例

代码示例来源:origin: ch.cern.hadoop/hadoop-yarn-common

list.add(join(id,"DataTable =  $('#", id, "').dataTable(", init,
       ").fnSetFilteringDelay(188);"));
String postInit = $(postInitID(DATATABLES, id));
if(!postInit.isEmpty()) {
 list.add(postInit);

代码示例来源:origin: com.github.jiayuhan-it/hadoop-yarn-common

list.add(join(id,"DataTable =  $('#", id, "').dataTable(", init,
       ").fnSetFilteringDelay(188);"));
String postInit = $(postInitID(DATATABLES, id));
if(!postInit.isEmpty()) {
 list.add(postInit);

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-common

list.add(join(id, "DataTable =  $('#", id, "').dataTable(", init,
       ").fnSetFilteringDelay(188);"));
String postInit = $(postInitID(DATATABLES, id));
if(!postInit.isEmpty()) {
 list.add(postInit);

代码示例来源:origin: ch.cern.hadoop/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "jobs");
 set(initID(DATATABLES, "jobs"), jobsTableInit());
 set(postInitID(DATATABLES, "jobs"), jobsPostTableInit());
 setTableStyles(html, "jobs");
}

代码示例来源:origin: io.hops/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "jobs");
 set(initID(DATATABLES, "jobs"), jobsTableInit());
 set(postInitID(DATATABLES, "jobs"), jobsPostTableInit());
 setTableStyles(html, "jobs");
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "jobs");
 set(initID(DATATABLES, "jobs"), jobsTableInit());
 set(postInitID(DATATABLES, "jobs"), jobsPostTableInit());
 setTableStyles(html, "jobs");
}

代码示例来源:origin: org.apache.hadoop/hadoop-mapreduce-client-app

@Override protected void preHead(Page.HTML<__> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
}

代码示例来源:origin: ch.cern.hadoop/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 //override the nav config from commonPReHead
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 //Set up the java script and CSS for the attempts table
 set(DATATABLES_ID, "attempts");
 set(initID(DATATABLES, "attempts"), attemptsTableInit());
 set(postInitID(DATATABLES, "attempts"), attemptsPostTableInit());
 setTableStyles(html, "attempts");
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
 //Override the default nav config
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
}

代码示例来源:origin: io.hops/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 //override the nav config from commonPReHead
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 //Set up the java script and CSS for the attempts table
 set(DATATABLES_ID, "attempts");
 set(initID(DATATABLES, "attempts"), attemptsTableInit());
 set(postInitID(DATATABLES, "attempts"), attemptsPostTableInit());
 setTableStyles(html, "attempts");
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 //override the nav config from commonPReHead
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 //Set up the java script and CSS for the attempts table
 set(DATATABLES_ID, "attempts");
 set(initID(DATATABLES, "attempts"), attemptsTableInit());
 set(postInitID(DATATABLES, "attempts"), attemptsPostTableInit());
 setTableStyles(html, "attempts");
}

代码示例来源:origin: io.hops/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
 //Override the default nav config
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
}

代码示例来源:origin: ch.cern.hadoop/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
 //Override the default nav config
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
}

代码示例来源:origin: io.hops/hadoop-mapreduce-client-app

@Override protected void preHead(Page.HTML<_> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-mapreduce-client-app

@Override protected void preHead(Page.HTML<_> html) {
 String jobID = $(JOB_ID);
 set(TITLE, jobID.isEmpty() ? "Bad request: missing job ID"
   : join("Configuration for MapReduce Job ", $(JOB_ID)));
 commonPreHead(html);
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:2}");
 set(DATATABLES_ID, "conf");
 set(initID(DATATABLES, "conf"), confTableInit());
 set(postInitID(DATATABLES, "conf"), confPostTableInit());
 setTableStyles(html, "conf");
}

代码示例来源:origin: io.hops/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "tasks");
 set(DATATABLES_SELECTOR, ".dt-tasks" );
 set(initSelector(DATATABLES), tasksTableInit());
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
 set(initID(DATATABLES, "tasks"), tasksTableInit());
 set(postInitID(DATATABLES, "tasks"), jobsPostTableInit());
 setTableStyles(html, "tasks");
}

代码示例来源:origin: ch.cern.hadoop/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "tasks");
 set(DATATABLES_SELECTOR, ".dt-tasks" );
 set(initSelector(DATATABLES), tasksTableInit());
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
 set(initID(DATATABLES, "tasks"), tasksTableInit());
 set(postInitID(DATATABLES, "tasks"), jobsPostTableInit());
 setTableStyles(html, "tasks");
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-mapreduce-client-hs

@Override protected void preHead(Page.HTML<_> html) {
 commonPreHead(html);
 set(DATATABLES_ID, "tasks");
 set(DATATABLES_SELECTOR, ".dt-tasks" );
 set(initSelector(DATATABLES), tasksTableInit());
 set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
 set(initID(DATATABLES, "tasks"), tasksTableInit());
 set(postInitID(DATATABLES, "tasks"), jobsPostTableInit());
 setTableStyles(html, "tasks");
}

相关文章