Display view content into the Table

Hi!

I m facing a problem to display view onto the webpage. I have view which has three column "sno. | Date | Id "

If I embedded this view at page it will looks fine and is first column has hyperlink which open its document using Css it also looks fine.

But what I want to do is I want to display its content with hyperlink at ID Fields which will not open its own document instead of this I want to open different page with query string of this ID. Obviously I need to display it in to the table and makes hyperlink to the designated page…

How could I achieve this task. In .net or java we use for loop and extract data through SQL or ORACLE. and set it related path. I am not able to do the same in Lotus due to lack of expertise in developing Lotus Web Application.

Please help me and if somebody has such code pls. send me at vkumar.sinha@gmail.com

Hope there could be an option in Lotus

Waiting for kind response.

Thanks & Regards

Vikas K Sinha

Subject: Display view content into the Table

Naturally, it’s a lot easier in Domino. :wink:

A view already is a collection of all important data about documents (or

records, for that matter). What is important and what not, you decide when

designing the view.

The link on the document generated by Domino can be turned off (although this,

I admit, is the unintuitive part). In the column properties of the first

column, click on the last tab (Advanced), check the (currently unchecked) box

to display values as links, save the view, uncheck the box and save the view

again. The standard link will be gone.

Now, you can create your own link, which is actually pretty easy. Every text in

a column formula, that is enclosed in square brackets is served to the browser

as it is, if it starts with an HTML tag. So, to generate your own links, simply

create a column formula to build an HTML anchor like so

{< a href=“/?UrlCommand&param=} + @Text(@DocumentUniqueId) + {”>} +

sno + {]}

(Note: The space between < and a is there only, to keep the forum from stripping the < out.)