Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have previously asked a question regarding renaming favorites, here: Tridion Favorites - ability to rename favorite links

Now based on some research from this question Can the list of favorites be extended using a Data Extender?

I am extending the favorites by using dataextender. So the idea is whenever favorite list is retrieved, I would replace it with renamed values of the favorites (the renamed values which are stored as a seperate appdata). But for some reason my dataextender doesnt seem to be working/included in the tridion.

My first question is: Can I listen to favorites reader by looking for command GetList?

Second Question: Also in the config, do I just mention it in the ext:DataExtender element or do i need mention other elements like ext:list

Final Question: Is there a way I can debug my dataextender from visual studio like we can debug event system by attaching to dllhst3g.exe...

share|improve this question
Can't help on the first 2 questions, but I assume you can debug by attaching to IIS (w3wp.exe) – Nuno Linhares Feb 19 at 15:05

1 Answer

up vote 4 down vote accepted

To extend List Favorites, you should listen to GetListUserFavorites command.

No, just ext:dataextender

And yes, as Nuno mentioned, to debug DataExtenders you should attach to w3wp.exe process.

share|improve this answer
Thanks a ton, UI Bearcore.... We didnt find this information anywhere on the web... Thanks again! – Ram Gandhapuneni Feb 20 at 5:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.