Return a list of all values that the specified control can take.
(self, # deprecated
name=None, type=None, kind=None, id=None,
nr=None, by_label=False, label=None)
| 3009 | # Form-filling methods applying only to ListControls. |
| 3010 | |
| 3011 | def possible_items(self, # deprecated |
| 3012 | name=None, type=None, kind=None, id=None, |
| 3013 | nr=None, by_label=False, label=None): |
| 3014 | """Return a list of all values that the specified control can take.""" |
| 3015 | c = self._find_list_control(name, type, kind, id, label, nr) |
| 3016 | return c.possible_items(by_label) |
| 3017 | |
| 3018 | def set(self, selected, item_name, # deprecated |
| 3019 | name=None, type=None, kind=None, id=None, nr=None, |
nothing calls this directly
no test coverage detected