Hi I have a problem with the CellControlAttached event. The problem is that this event doesn't fire with a column template that I have created. Can anybody provide an example on how to use this event?
Thank you in advance
Can you suggest a hack to get round this whilst we all wait patiently for the next service release?
Myles
Hi,
So, what Darrell meant when he asked you if your TemplateColumn was bound or unbound, he was referring to whether or not the key of the column was associated with a property on your object.
For example:
If we had a class called Person, which had a property called Name.
A bound TemplateColumn would be:<iggrid:TemplateColumn Key="Name"/>
an unbound TemplateColumn would be:
<iggrid:TemplateColumn Key="foo"/>
The bug was that the event wouldn't be raised in the second case. If your key was associated with a property, such as in the first case, the event does work. This bug has been fixed and will be in the next Service Release.
-SteveZ
The template column is bound, but the event don't fired.
If you want I send you an example ?
Thanks
Is your TemplateColumn bound or unbound? There was an issue identified with The CellControlAttached not being raised for unbound TemplateColumn cells. Is this your case?