-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog
47 lines (31 loc) · 1.56 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
2010-06-16 Eric Maupin <[email protected]>
* Elements.cs: Added support on FloatElement for an optional
caption (default is still no caption).
* Reflect.cs: Added [Range] optional captions support.
2010-06-18 Eric Maupin <[email protected]>
* Element.cs: EntryElement: Fixed an error with FetchValue
if the text field hadn't yet been generated.
StringElement: SelectionStyle is only blue when there's a
tap handler registered.
2010-06-17 Eric Maupin <[email protected]>
* Reflect.cs: EntryAttribute: Removed placeholder requirement
and added KeyboardType support.
2010-05-16 Miguel de Icaza <[email protected]>
* DialogViewController.cs (StartSearch, FinishSearch,
PerformFilter): Made public these methods. They allow consumers
to start, stop and trigger a filter operation programatically.
(OnSearchTextChanged): New virtual method that subclasses can hook
up into to check for changes in the search bar.
(SearchTextChanged): Event to listen to changes in the search.
(Selected): New virtual method that actually dispatches to the
Selected method in the element. This wasy subclasses can catch
the Selected method without having to hook up hundreds of
methods.
* Element.cs (Section.Insert): the overload that takes an
IEnumerable now returns the number of items that were inserted.
(Section.Remove): Add new overload to remove an element from the
section.
(RootElement): New constructor that can take a function that
creates the nested DialogViewController, this prevents code from
having to derive a new class just to push a new kind of
UIViewController.