Name Orbit Timestamp Refresh Time
Sun - 1775560751590
Mercury Sun 1775560751590
Venus Sun 1775560751590
Earth Sun 1775560751590
Mars Sun 1775560751590
Jupiter Sun 1775560751590
Saturn Sun 1775560751590
Uranus Sun 1775560751591
Neptune Sun 1775560751591
Pluto Sun 1775560751591
  • Rows 1 to 10 of 88
  • Page 1 of 9
<?xml version="1.0" encoding="UTF-8"?> <!-- * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> <ui:composition template="/main.xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:tc="http://myfaces.apache.org/tobago/component" xmlns:ui="http://java.sun.com/jsf/facelets"> <tc:sheet value="#{sheetController.solarList}" id="sheet" var="luminary" rows="10" markup="small"> <tc:column label="Name"> <tc:out value="#{luminary.name}" labelLayout="skip"/> </tc:column> <tc:column label="Orbit"> <tc:out value="#{luminary.orbit}" labelLayout="skip"/> </tc:column> <tc:column label="Timestamp"> <tc:out id="timestamp" value="#{dateController.timestamp}" labelLayout="skip"/> </tc:column> <tc:column label="Refresh Time"> <tc:button id="refresh" label="Refresh"> <f:ajax render="timestamp"/> </tc:button> </tc:column> </tc:sheet> </ui:composition>