Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing the ASPX for the main front panel in InfoView 1

Status
Not open for further replies.

eo

MIS
Apr 3, 2003
809
We recently upgraded from BOExi r1 to r2. In both cases we are using InfoView out-the-box frontend as much as possible. Both r1 and r2 had the BOBJ logo, and the heading "BusinessObjects InfoView collects and presents BI information..." and 3 bullet points below.

Does anyone know where in the ASPX pages this code lives, so that I can replace the writing with something else. The logo is no problem, as I simply renamed an alternative logo in IMAGES the name referred to.

Does anyone here know?

I am unfortunately not belssed with ASP developers to help.

EO
Hertfordshire, England
 
Yes if you look up modifiying Infoview homepage on BOBJ's website you will find a pdf doc that gives instructions on how to do this.

Thanks so much!
satinsilhouette
 
Hi

I have done this, but the only options available to me are changing the color scheme, or logo. It is more than that. It is changing the words of the panel as described above. Please let me know if there are more in dept explanations available somewhere. I cannot see to find any.

EO
Hertfordshire, England
 
From what I have been researching today, which is close to what you are doing, you have to use a portlet to achieve anything more than changing the logo or the look and feel of the homepage.

Thanks so much!
satinsilhouette
 
I updated our main panel text by modifying the following file:
c:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Web Content\Enterprise115\InfoView\home.aspx

The first thing I tried was removing the entire main table from this page and replacing it with my own text. However, this produced ASP errors. I'm not an ASP programmer so I used the following work around:

1) Edit c:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Web Content\Enterprise115\InfoView\default.css to add the following line to the start of the file:

.noshow {display: none;}

This defines a CSS style that will hide whatever it is applied to.

2) Edit the home.aspx file to change two lines as follows:
a) <table class="list" border="0" cellspacing="3" cellpadding="3">
to
<table class="noshow">

b) <asp:panel id=messagePanel runat="server">
to
<asp:panel id=messagePanel class="noshow" runat="server">

This uses the CSS from step 1 to hide the display of the pre-written text from our users but allows BO to render it so it doesn't produce ASP errors.

3) Add your new text in HTML format between
</table></asp:panel>
</td></tr>
and
</table>
</form>

As I said, I'm not a developer so there is probably a more elegant way of going about this, but that's what I did - it works for me, and it didn't take long to implement.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top