This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.out.println("hello world"); | |
System.out.println("hello world"); | |
System.out.println("hello world"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
/** | |
* a content pane with some extras like being able to fetch extra content | |
* and a title section which optionally is set | |
*/ | |
var _RT = myfaces._impl.core._Runtime; | |
_RT.extendClass("extras.apache.ContentPane", extras.apache.ComponentBase, { | |
_NODE:myfaces._impl._dom.Node, | |
_Lang: myfaces._impl._util._Lang, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
/** | |
* a pull component which pulls | |
* a certain area periodically | |
*/ | |
var _RT = myfaces._impl.core._Runtime; | |
_RT.extendClass("extras.apache.ToggleButton", extras.apache.ImageButtonLight, { | |
valueHolder: null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ui:component xmlns="" | |
xmlns:ui="http://java.sun.com/jsf/facelets" | |
xmlns:composite="http://java.sun.com/jsf/composite" | |
xmlns:f="http://java.sun.com/jsf/core" | |
xmlns:h="http://java.sun.com/jsf/html" | |
xmlns:c="http://java.sun.com/jsp/jstl/core" | |
xmlns:ezw="http://java.sun.com/jsf/composite/ezcomp/widgets"> | |
<composite:interface componentType="at.irian.StandardJavascriptComponent"> | |
<composite:attribute name="id" required="true"/> | |
<composite:attribute name="javascriptVar" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" | |
xmlns:cust="http://java.sun.com/jsf/composite/components"> | |
<h:head> | |
<title>MyFaces 2.0 Javascript API Tests Part1</title> | |
<cust:loadscripts /> | |
<style type="text/css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>keytool-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>generate-resources</phase> | |
<id>clean</id> | |
<goals> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myfaces.config = myfaces.config || {}; | |
myfaces.config["queuesize"] = 5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javax.faces.request(this, event, {render:'queuesizeoutput', execute:'queuesizecontrol', op:'queuesize', myfaces:{queuesize: 5}}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h:inputText id="ajaxinput" onkeyup="jsf.ajax.request(this, event, | |
{render:'ajaxresult', execute:'ajaxinput', myfaces:{delay: 300}}); | |
return true;"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h:inputText id="ppsControl2" onkeyup="javax.faces.request(this, event, | |
{render:'ppsoutput', execute:'ppsControl ppsControl2', | |
myfaces:{pps:true}}); return true;" value="input for full submit"/> | |
OlderNewer