Skip to content

Instantly share code, notes, and snippets.

@uttamhn
Created May 28, 2013 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uttamhn/5660608 to your computer and use it in GitHub Desktop.
Save uttamhn/5660608 to your computer and use it in GitHub Desktop.
Worksheet clickable
@Listen("onClick = button[label='Update Balance']")
public void updateBalance(){
log.debug("Updating Balance.")
Integer fromDay = Integer.parseInt(param.get("fromDay")[0])
Integer fromMonth = Integer.parseInt(param.get("fromMonth")[0])
Integer toDay = Integer.parseInt(param.get("toDay")[0])
Integer toMonth = Integer.parseInt(param.get("toMonth")[0])
…...
…...
// Call your service method here...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment