Get a View ID
From LongJump Support Wiki
Revision as of 02:14, 29 December 2011 by imported>Aeric
To get the ID for View of Object records:
- 1. Go to Workspace > {object}
- 2. Use your browser's page-inspection tools to retrieve the ID of the view. For example, assume that the view you want is called "Open Orders". Then:
- In Chrome:
- Click the dropdown next to the View: label (just above the list of records, in the left corner).
The dropdown list is now open. - Right click the view label and choose Inspect Element.
- Click the dropdown next to the View: label (just above the list of records, in the left corner).
- In Chrome:
- In FireFox, using the FireBug plugin:
- Right click and choose Inspect Element.
The FireBug panel opens. - Click the dropdown next to the View: label (just above the list of records, in the left corner).
The dropdown list is now open. - At the top of the FireBug panel, click the Inspect Element icon at left.
(You have to use that one. The right-click option won't work, in this case.) - Move the mouse over the name of the view ("Open Orders")
- Right click and choose Inspect Element.
- In FireFox, using the FireBug plugin:
- In all browsers, display the page source and search for the name of the view ("Open Orders").
- 3. You are now displaying a call that looks like this:
<a href="javascript:lj_changeCurrentTabView('Service?s=1139&a=...&id=...
&show_layout={form_id}&object_id=...');" ...>Open Orders</a>
- 4. Extract value of the form ID from the show_layout parameter.