[sourcecode language="xml"]
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
<t:form>
<t:label for="hp"/><t:select t:id="hp" t:model="literal:nokia,cross,sony,motorola"/>
<t:submit t:value="Pesan"/>
</t:form>
<t:if test="hp">
Item dipesan : ${hp}
</t:if>
</html>
[/sourcecode]
File .java
[sourcecode language="java"]
package com.example.tutorial.pages;
import org.apache.tapestry5.annotations.Persist;
import org.apache.tapestry5.annotations.Property;
public class Tselect {
@Property
@Persist
private String hp;
void onActivate(String hp){
hp = hp;
}
Object onPassivate(){
return hp;
}
}
[/sourcecode]
No comments:
Post a Comment