Focal Point
[CLOSED] Dashboard question

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4751089372

February 29, 2008, 02:33 PM
Kamesh
[CLOSED] Dashboard question
I want to create a dashboard group view and the look will be something like below.

Bannerframe – will have logo on left and the links Logoff, Tree, Recent, Favorites on right.

Left frame – Will have all the report links

Right frame – The report output should show there.

How to do this? I tried to create this but not able to. And also I am trying to find the main html page that has the frameset tag but not able to find it. Where can I find that?

Thanks

This message has been edited. Last edited by: Kerry,


WFConsultant

WF 8105M on Win7/Tomcat
February 29, 2008, 03:17 PM
Francis Mariani
Kamesh,

To view the source of the main html page, do not right-click on one of the frames, instead, select View > Source from the I.E. toolbar.

Are you building the report links html file yourself, or is it being created by Viewbuilder?

If you are, the links should target the frame on the right.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
February 29, 2008, 03:28 PM
Kamesh
Francis, Thanks for your thoughts.

1. I am not trying to view the source but I am trying to view the code. Like how we can see the banner.html .

2. I am building it through view builder.

Steps how I created
--------------------
1. Edit look --> Changed banner logo, color and composition.
2. Edit Content --> Added 1 page and 1 block. That block has two files as list.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 10:08 AM
Kamesh
Any inputs or thoughs on this issue.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 10:15 AM
Francis Mariani
Kamesh,

Sorry I haven't responded sooner. You may have figured it out by now, but here's some info.

The views generated by Dashboard ViewBuilder are located here (on my server):

D:\ibi\WebFOCUS53\worp\worp_custom


Group View folders are names xx_gbv where xx is a sequential alphabetical code for each group view, aa_gbv, ab_gbv, ac_gbv, etc.

Public views are named aa_mpv, ab_mpv, except for the first, default one, which is named public.

I created a view like the obe you require.

I created a page with two blocks. The first block has Block Type set to "List". I then added a few reports to the Content List.

The second block has Block Type set to "Output".

I saved the view and then accessed it from the list of views. When I click a report name in the list shown ion the left hand frame, the output of the report is displayed in the right frame.

Is this the behaviour you need?


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 03, 2008, 10:50 AM
Kamesh
Thanks Francis, That's the way I wanted. I tested and it looks good now.

I do check the folder you mentioned but didn't find the main html file (the one will have the frameset tag). I believe that is generated automatically by jsp when it authorizes the user.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 10:57 AM
Francis Mariani
Kamesh, it seems that the only way to view the main html file is to select View > Source from the I.E. toolbar.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 03, 2008, 11:26 AM
Kamesh
Yeah I knew it but I want to modify something on that file.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 11:44 AM
Francis Mariani
<!-- Created By WebFOCUS Business Intelligence Dashboard HtmlBuilder on Mon Mar 03 11:24:38 EST 2008 -->
<HTML>
<HEAD>
<TITLE>WebFOCUS Business Intelligence Dashboard</TITLE>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
window.name="mainWindow";
//-->
</SCRIPT>
</HEAD>
   <FRAMESET BORDER="0" rows="65, *"  >
<FRAME FRAMEBORDER="0"  SRC="/ibi_apps/Controller;jsessionid=h3dRBNC4b07x72wr7O97lgybjHY?WORP_MPV=an_gbv&WORP_REQUEST_TYPE=worp_launch_cgi&USER_BANNER_LINK=LOGOFF,OPTIONS,DEFERRED_STATUS&WORP_ACTION=worp_get_banner" name="banner" title="Banner Frame" scrolling="no"  >
<FRAME FRAMEBORDER="0" SRC="/ibi_apps/Controller;jsessionid=h3dRBNC4b07x72wr7O97lgybjHY?WORP_MPV=an_gbv&WORP_REQUEST_TYPE=SHOW_CONTENT&IBIMR_random=-604401405017445&" name="contentFrame" title="Content Frame for Dashboard Blocks" scrolling="no">
  </FRAMESET>
</HTML>


There's usually nothing to change in an html page that contains frameset code. What would you like to change?

Regards,


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 03, 2008, 12:31 PM
Kamesh
I would like to change the frameset.

<FRAMESET BORDER="0" rows="65, *" >
to

< FRAMESET BORDER="0" rows="45, *" >

in order to give enough space for the content frame.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 12:43 PM
Francis Mariani
Simply use ViewBuilder to change the width of the blocks:

view > Page Layout > Reduce the percentage of the List Block.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 03, 2008, 01:02 PM
Kamesh
I want to change the height of the banner not the blocks. Already I did that by changing the column percentage.

Right now the banner frame occupies little bit more space than normal.


WFConsultant

WF 8105M on Win7/Tomcat
March 03, 2008, 01:48 PM
Francis Mariani
Kamesh,

Edit file profile.prf in the folder of the view.

Change the value for bannerHeight.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
March 03, 2008, 02:06 PM
Kamesh
Great, Thanks a lot for your help.


WFConsultant

WF 8105M on Win7/Tomcat
September 09, 2011, 02:39 PM
ewinery
On this topic, since the LAUNCH report is typically delivered within a frame, I would like to add a CSS reference within that frame's output.

The first rows of that frame currently look like:


< !--Olap java_script-->
<HTML>
<HEAD>
<META name="HandheldFriendly" content="True">
<META name="PalmComputingPlatform" content="True">
<TITLE>WebFOCUS Report</TITLE>
<STYLE TYPE="text/css">
< !--
TABLE { border-collapse:collapse; }
TD { vertical-align:top; padding-left:6pt; padding-right:6pt; }
.x3 { font-family:VERDANA; font-size:11pt; color:#424649; border-style: NONE; }
.x2_0 { font-family:VERDANA; font-size:11pt; color:#424649; background-color:#FFFFFF; border-style: NONE; }
.x2_1 { font-family:VERDANA; font-size:11pt; color:#424649; background-color:#EBEBF0; border-style: NONE; }
.x1 { font-family:VERDANA; font-size:11pt; font-weight:bold; color:#FFFFFF; background-color:#666666; border-style: NONE; }
-->
</STYLE>
...


but I can not find any of this coding or templating referenced.


Any ideas?


WebFOCUS Version: 7703
Windows, all output