DNUG 2011 – XPages Sample Application

Here is the sample application, I used at my Special Interest Group session at DNUG 2011 in Bonn.

The sample shows a very simple XPage application that you can use to learn the very basics of XPages development. The sample includes:

  • catogorized views ( with custom expand/collapse indicators)
  • Export to Excel
  • Dojo charting for data visualization

Screenshot

Download

4 thoughts on “DNUG 2011 – XPages Sample Application

  1. @Patrick:

    Insert a new column into the ByCity view after the first column. Properties: Total, Percentage of all documents, hide details

    in the view_chart custom control add the tooltip part to the code.

    “{y: ” + rowData.getDescendantCount() + “, text: \””
    + rowData.getColumnValue(“City”) + “\”, tooltip: \””
    + rowData.getColumnValue(“percent”)*100 + “%”+ “\”}, \n”
    }else{
    “”;

Comments are closed.