I am a new Lotus Developer looking for some advice. I am working with Lotus Notes 8.5.2 and using Designer to develop my applications.

I am designing a new application based on one existing database - the 'People' database. This contains all information on all Employees in a certain environment. Some employees are secretaries to other employees, and this is indicated in the employee record, as each employee (along with name, phone, etc) has a field called 'Secretary'.

What I need to do is be able to click on a record (Person) in one frame, and subsequently load the information on their secretary in a seperate, smaller frame. I understand how to target frames at each other and can load information on the selected person in a new frame.

However I cannot load information on that person's secretary in a seperate frame.

If anybody has any ideas, it'd be much appreciated.

link|improve this question
Is opening it in a new tab an option? What you describe can be build in a composite application, but that will take quite a bit more time. And are you aware of the XPages technology? – Jasper Duizendstra Jul 6 '11 at 12:58
time, i have! and i thought xpages was specific to web apps - this one has to run in the client. – Thom Jul 6 '11 at 14:07
XPages can run on the client and the web. XPiNC – Jasper Duizendstra Jul 6 '11 at 14:28
feedback

4 Answers

If you have the time to learn the technology, XPages would be the way to go, even in the client. A composite application will work also but for a new developer there is more activity around XPages.

link|improve this answer
I would caution against complex stuff in XPiNC - performance isn't too great. – Ben Poole Jul 16 '11 at 10:59
feedback

I would avoid spending too much energy learning the composite application architecture. I don't believe this is the real future direction for IBM. You could implement a similar design using XPages and taking advantage of the built-in AJAX functionality. (You can have a page with a section which refreshes to show the Secretary details when you change the employee selection). If you have worked with ASP, the XPages approach will seem very familiar.

link|improve this answer
feedback

I agreed with Ed. Xpages will provide you with the exact you need. The first thing you need to learn in order to accomplish this task will be the Xpages Extension Library/Inline Edit/Repeat Control.

link|improve this answer
feedback

There are different levels of coding when it comes to compApps. You can have simple interaction through lotusscript which is reasonably high level, to low level Java/RCP development.

From your description it sounds like you are doing high level actions. So I recommend looking at "My First Wire" tutorial.

http://www-10.lotus.com/ldd/compappwiki.nsf/dx/ibm-my-first-wire

I wrote some time ago but still works. It should explain how to have your code action on a wire update.

As with the others I concur on learning XPages. Later versions allow you to send wire updates to an XPage. A sample is here.

http://www-10.lotus.com/ldd/ddwiki.nsf/dx/XPage_Components_in_Notes_851_Videos.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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