summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authoracox <andrew.cox@nokia.com>2012-01-14 08:14:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-01-16 07:51:02 +0100
commit25b1fb288d1e334357ce6d6c08f1f7fbf383c413 (patch)
tree66f8b2902bc3c4c4e7ccca9ec342924adcd7cd5f /examples
parent4394c1c0f980fb07902e9ce0aad324b20524a984 (diff)
EditorEvent title editable area bordered same as rest of editables now.
Change-Id: I77e534cd03f3e7d296a6b1fcaaa02977c3e0473f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Xizhi Zhu <xizhi.zhu@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/qmlorganizerlistview/content/EventEditor.qml19
1 files changed, 15 insertions, 4 deletions
diff --git a/examples/qmlorganizerlistview/content/EventEditor.qml b/examples/qmlorganizerlistview/content/EventEditor.qml
index d55fde4b3..21106f2ed 100644
--- a/examples/qmlorganizerlistview/content/EventEditor.qml
+++ b/examples/qmlorganizerlistview/content/EventEditor.qml
@@ -53,15 +53,25 @@ Rectangle {
//![Grid Editable Data]
//![Create Event Title]
- Row {
+
+ Column {
spacing: 2
Text {
+ id: editorTitleLabel
text: "Event Label:"
}
- TextEdit {
- id: displayLabel
- text: (eventItem) ? eventItem.displayLabel : ""
+ Rectangle {
+ id: organizerTitle
+ border.color: "black"
+ border.width: 2
+ radius: 5
+ width: displayLabel.width
+ height: displayLabel.height
+ TextEdit {
+ id: displayLabel
+ text: (eventItem) ? eventItem.displayLabel : ""
+ }
}
}
//![Create Event Title]
@@ -70,6 +80,7 @@ Rectangle {
Text {
text: "Start:"
}
+
//![Start Title]
//![Events Start Date]