Changes for page Click to Debug
Last modified by Kieran Kelleher on 2009/08/12 14:33
From version 8.1
edited by Chuck Hill
on 2008/12/17 18:13
on 2008/12/17 18:13
Change comment:
There is no comment for this version
To version 7.1
edited by David Holt
on 2009/08/12 14:33
on 2009/08/12 14:33
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. chillatgvc1 +XWiki.dholt - Content
-
... ... @@ -1,6 +1,6 @@ 1 1 == What It Is == 2 2 3 -Click to Debug is a [[Click to Open]] extension that allows you to toggle binding debugging from the UI while your applica iton is running.3 +Click to Debug is a [[Click to Open]] extension that allows you to toggle binding debugging from the UI while your application is running. 4 4 5 5 == What You Need == 6 6 ... ... @@ -219,16 +219,18 @@ 219 219 220 220 {{code}} 221 221 222 -D ec 13 11:00:29 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">223 -D ec 13 11:00:29 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">224 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">225 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">226 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787">227 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null228 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value null229 -D ec 13 11:00:33 MDTask[62934] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null222 +DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787"> 223 +DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787"> 224 +DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787"> 225 +DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787"> 226 +DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value <com.mdimension.mdtask.model.Task pk:"1027787"> 227 +DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null 228 +DEBUG NSLog - HatchViewTaskPage ==> [inline]:HatchEditTask { task=task; } value null 229 +DEBUG NSLog - HatchViewTaskPage <== [inline]:HatchEditTask { task=task; } value null 230 230 231 231 {{/code}} 232 232 233 +**Note**: A prefix like ##Dec 13 11:00:29 MDTaskWOL:62934 (ERXNSLogLog4jBridge.java:46)## was removed from each line above to make this easier to read. 234 + 233 233 So what that's showing is HatchViewTaskPage component is pushing the task binding into the HatchEditTask component with the value Task 234 234 1027787, then HatchEditTask component is pushing the binding back up. So you can see here that 6th line, HatchEditTask component is pushing a null binding back out (which, in this case, was causing a problem I was trying to find).