Added note explaining idea for list_disclosure.py example.

This commit is contained in:
Jeff Pittman 2012-07-13 16:44:15 -05:00
parent e52cf08e3e
commit 01386d3762
1 changed files with 12 additions and 0 deletions

View File

@ -8,6 +8,18 @@ from kivy.properties import ObjectProperty, \
from kivy.uix.listview import ListView, ListAdapter
from kivy.uix.mixins.selection import SelectionObserver, SelectableItem
# [TODO] NOTE -- This is a copy of the old version of list_master_detail.py,
# because it contains an example of how to make a custom
# ListItem.
#
# Calling this example "disclosure" because plan is to try
# expanding a row to show a detail view when the disclosure
# button for a row is clicked.
#
# Something like this:
#
# http://www.zkoss.org/zkdemo/grid/master_detail
#
# Master-Detail view for showing a list on the left (the master) and a view
# on the right for the detail view.