Reputation: 503
In the snippet of code with the dashed lines, I want to change the green triangle images and change the text and get into the HTML code.
It appears to be a Lotus Notes "include" snippet of code. How do I edit the actual HTML?
I've tried a number of experiments: RMB on the dahsed lines, inside the table, Double Clicking, playing with the attributes in the panel below (clicking on Window Title, HTML Head Content, HTML Body Attributes). Nothing works.
I am new to Lotus Notes and I don't know what kind of table I just inherited in this very old file I need to change.
Upvotes: 0
Views: 438
Reputation: 14628
What you're looking at is a Form with a reserved name "$$View Template for...". What you are calling a "table" is an Embedded View. Specifically, it is the view named WebIndex. Some of the things you want to change are part of the view itself, and you will have to go there to change them. And some of them may be properties of Shared Actions that have been added to the View's action bar. Some of them may be properties of the Embedded View control on the Form. (It's hard to tell, because you're a little vague about what text you want to change.)
However, it's pretty clear that this is a standard view, which means that the Domino server's built-in HTML rendering is doing the bulk of the work -- that's where the green triangles come from, but since you're new to Domino you don't know what a standard view is.
So first off, I've got to tell you that your options for changing the rendering of a standard view are limited. You would probably have to change it from a standard view to an HTML view (that's done in the View Properties dialog), and take full responsibility for generating HTML for the view, which will mean that you will have to learn about the various Domino URL formats that your HTML will have to generate. And that goes well beyond what can be addressed in a single (or even a series) of StackOverflow questions. It requires a fair amount of investment in learning Domino web programming (classic, pre xpages style).
Upvotes: 2