HTML View

Is there a way of bringing up the html code for some of the objects?

I want to edit some of the tables and Layouts that have been automatically generated and have been unable to make the changes that I want to.

This may simply be because I am not looking in the right area (I am a newbie at this after all).

Subject: HTML View

Hi Looks like u want your own formatting for the view.

you can use HTML in the columns and column headers

use it “td>”+fieldnam+" ]"

In the td u can manipulate the space width and all.

In the first column u can add anchor tag “” to make a link and build the url.

HTH
Keshava

Subject: RE: HTML View

That is what I want to do the problem is that I cannot access the base HTML code in order to actually do it!

Subject: RE: HTML View

In the designer while designing a view instead of giving column values use

In the first column

“tr>”+field Name+“]”

Intermediate columns

“td >”+field Name+“]”

Last column

“td >”+field Name+“]”

This should help you have your own formatting.

HTH
Keshava

Subject: RE: HTML View

If I understand your issue, you want to modify the html that domino has created for a notes view?

I presume you understand that domino generates the html for a view “on the fly” so you can not edit the html produced by domino.

What you can do is include you own HTML in the view columns as the previous poster has already said.

At the end of the day a view is just converted into a html table. You can do various things to style the view like:

  1. Wrap the view in another element like a div or another table in the view template and apply styles using CSS

  2. Add your own or other html around your fields, remember to use to mark passthrough html.

  3. If there are no other tables on the page you could just use CSS to define the styles for all the tables on the page