Hello!
Next time I'm recieve node with this attribute in WCF service (when I'm expand it), Attributes property contains this keypair: "0, {object}" instead {"TypeAttribute", "Type1"}.
I'm populate my RadTreeView via WCF service on demand. In service I'm set custom attribute to RadTreeNode:
Attributes = new Dictionary<string, object> { { "TypeAttribute", "Type1" } } |
When I'm debug my page in fireBug, I noticed then attributes of node in post json (from page to service) contains value of keypair as string, but response from service contains it as object. Maybe this is a source of problem?
My question is - how I must set custom attributes in WCF service code to correctly get it from "node" parameter of LoadData method of service?
Thank you.
P.S. Sorry for my bad English.