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

Situation:

  1. I have an application that have Employee information
  2. Each Employee has a Manager field (that refers to another employee)
  3. To enhance the experience, I was thinking of placing an organization chart based on the inputted information.

Question:

  1. Is there a way to dynamically generate an organizational chart based on Employee-Manager information in Lightswitch? I know I will recurse on the relationships, however I'm unsure on how to present it.
  2. If it's not possible in a graphical format, would it be possible to have it represented in a grid?
  3. Would it be possible through creating a custom control?
share|improve this question

2 Answers

up vote 2 down vote accepted

I have create a custom control to work with hierarchies. You can see some screen shots and source code.

The custom control is based on Karol Zadora msdn post.

share|improve this answer
cheers! I'll try it out :) – Bryan Hong Oct 3 '11 at 6:14
got to try it out, it's great and fully customizable too! – Bryan Hong Nov 10 '11 at 6:50
@Bryan Hong, if you need some help dont hesitate to contact to me. – danihp Nov 10 '11 at 7:21

Northwoods has done some work to get their GoXam Silverlight diagram control running in LightSwitch. You can see it here: http://www.nwoods.com/forum/forum_posts.asp?TID=4292&title=lightswitch-extension-anyone

share|improve this answer

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.