PDA

View Full Version : OnNodeClick in cSigCjTreeView.pkg does not get called on 2nd single click



ArchieCampbell
10-Mar-2011, 01:25 PM
First, I would like to say thanks for doing the work and building cSigCjTreeView.pkg and others.
I am happily using them.

My issue is when you single click the same item in the tree a second time without clicking another item first, OnNodeClick does not get called.

I looked at OnComNodeClick and it is not getting called either.

Any thoughts of how I can get around this (other than clicking another item) would be appreciated. Thanks.

(SigCj Wrapper 13.4.1 - VDF16.0)
(cSigCJTreeView is Rev 639 2010-03-15 by Martin Pincott)
(cSigCjW_Controls.pkg uses SigCJLIcense_v13.4.0.pkg)

Martin
11-Mar-2011, 10:31 AM
Hi,
The Codejock help states the following: -


Remarks

The standard Click event is generated when the user clicks any part of the TreeView control outside a node object. The NodeClick event is generated when the user changes selection of Tree with Mouse or Keyboard. If the user's click an already selected Node it won??t be fired.

Not that this helps you, there are not node object events for this control.

ArchieCampbell
11-Mar-2011, 01:13 PM
Hi Martin
Thanks for the reply.
I did read the help.
Really I did.

What I found was a list of 8 classes:
cSigCJ CalendarControl CheckBox ColorPicker DockingPane MonthCalendar ProgressBar PushButton ReportControl

I did not see cSigCJTreeView

For future reference, where did you find the Remarks you quoted.

Thanks
Archie

Martin
12-Mar-2011, 12:39 PM
In the Codejock help


Xtreme Suite Controls
Objects
Treeview Control
Events
Node Click Event

ArchieCampbell
12-Mar-2011, 09:42 PM
Got it.

Looks like I could use the DblClick event.
At least the help doesn't say the 2nd double click won't work.

Thanks Martin