Hyperlink Event"

From Documentation
Line 10: Line 10:
 
= Event Monitor Example =
 
= Event Monitor Example =
  
The [[ZK_Spreadsheet_Essentials_3/Working_with_Spreadsheet/Handling_Events/Mouse_Event#Event Monitor Example| Event Monitor]] application's screenshot when we click the link http://www.zkoss.org in A7.
+
The [[ZK_Spreadsheet_Essentials_3/Working_with_Spreadsheet/Handling_Events/Cell_Clicking_Event#Event Monitor Example| Event Monitor]] application's screenshot when we click the link http://www.zkoss.org in A7.
 
[[File:zss-essentials-events-hyperlink.png | center]]
 
[[File:zss-essentials-events-hyperlink.png | center]]
  

Revision as of 02:41, 8 August 2013



Overview

There are one hyperlink event that ZK Spreadsheet supports.

  • onHyperlink
    This event is fired when a user clicks a hyperlink in a cell. When a corresponding event listener is invoked, a HyperlinkEvent object is passed as an argument.

Event Monitor Example

The Event Monitor application's screenshot when we click the link http://www.zkoss.org in A7.

Zss-essentials-events-hyperlink.png


public class EventsComposer extends SelectorComposer<Component>{
	//omitted codes...

	@Listen("onCellHyperlink = #ss")
	public void onCellHyperlink(CellHyperlinkEvent event){
		StringBuilder info = new StringBuilder();
		
		info.append("Hyperlink ").append(event.getType())
			.append(" on : ")
			.append(Ranges.getCellReference(event.getRow(),event.getColumn()))
			.append(", address : ").append(event.getAddress());
		
		//show info...
	}		

}
  • Line 11: We can get the clicked hyperlink address.