Okay,
What I'm trying to do is this ... I'm trying to create a radpanel dynamically depending on the data, but when the user hovers on the second level items, I'm trying to show some imagebuttons that allow the user to quickly perform operations on that item.
So, here's the panel before the user hovers:
Category A (open)
- Item 1
- Item 2
- Item 3
Category B (closed until clicked 'FullExpandItem')
When a user hovers over Item 1 - show this:
Category A (still open)
- Item 1 + X
- Item 2
- Item 3
Category B (still closed)
An item template that I'll need is something like this:
the code for one of the image buttons does this: (right now, i'm just alerting what the ID is and the command, but I will be opening a radwindow to a page and set the ID=whatever in the querystring so I can dynamically show the data for that specific item.
with the following javascript:
Curious thing happens if I set that to the item template though - my items (the ones that have that inline hover menu) appear for every item (obviously, since there is no checking for which level (level = 1)) but that the regular databound items ALSO get put there.
What's a potentially correct way to go about this? I simply want to be able to specify what is in the second level items so I can put my inline hover menu there.
Help!
Kori