Himanshu.MarJAVA
Himanshu.MarJAVA

Reputation: 525

Lotus Notes Search on Web without change in URL

Is there a way in Lotus Notes to search a view without using URL commands.

Thanks.

Upvotes: 0

Views: 680

Answers (1)

Karl-Henry Martinsson
Karl-Henry Martinsson

Reputation: 2795

You would need to use Ajax and some Javascript for that. I would suggest to use jQuery, there you already have the function jQuery.get() that will do all the heavy lifting for you. More info plus examples at http://api.jquery.com/jQuery.get/

Call the search, perhaps a Lotusscript agent that you pass the search criteria to and returns the results formatted as HTML, then simply insert the return value into the DIV on yoru form where you want to display it. Or you can have the agent return the results as JSON, and then you can parse it locally in the browser and display it the way you want it.

Upvotes: 2

Related Questions