Autor Thema: Relevanz-Icon in SearchView  (Gelesen 1580 mal)

Offline guerilla

  • Junior Mitglied
  • **
  • Beiträge: 74
  • Geschlecht: Männlich
    • campino2k.de
Relevanz-Icon in SearchView
« am: 14.05.07 - 14:18:53 »
Hallo liebes Forum,

vielleicht suche ich nach dem falschen Begriff und wahrscheinlich gibt es schon 1001 Antwort/Lösung auf/für mein Problem:

Ich habe eine embedded View (handmade mit iFrame.... ) und rufe diese mit einem Searchview-Parameter auf.

Das Problem daran ist, dass in den Ergebnissen immer diese Relevanz-Icons (ihr wisst schon, diese lustigen grauen Kästen) auftauchen.
Kann man die Notesseitig entfernen (bzw gar nicht erst anzeigen, oder muss ich mit JS filtern?

Sollte das erste möglich sein, wüsste ich gerne, wie...

verzweifelst,

Chris
Lotus Notes ist ein sehr mächtiges und rätselhaftes Programm. Und seine Macht wird nur von seiner Rätselhaftigkeit übertroffen.

Driri

  • Gast
Re: Relevanz-Icon in SearchView
« Antwort #1 am: 14.05.07 - 15:13:53 »
Ich bin nicht so der Web-Entwickler, habe zu dem Thema das hier in meiner Code-Schnipsel-DB gefunden. Evtl. gibt es auch eine bessere/einfachere Möglichkeit.

Zitat
Here's a simple javascript to hide the gray or white relevance boxes in web search results.

Put the following code in the onLoad event of that form:

kill_boxes()

Put the following code in the JS-Header section of Your $$SearchTemplateDefault form or of any other form You use to display Your web search results and voila - the boxes are gone.


function kill_boxes()
{
for( i=0; i<document.images.length ; i++ )
{
if( document.images.src.indexOf('vwicnsr1.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr2.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr3.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr4.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr5.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr6.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

if( document.images.src.indexOf('vwicnsr7.gif') != -1)
{
document.images.height= HEIGHT=0
document.images.width= WIDTH=0
} //end if

} // end for
}

Offline guerilla

  • Junior Mitglied
  • **
  • Beiträge: 74
  • Geschlecht: Männlich
    • campino2k.de
Re: Relevanz-Icon in SearchView
« Antwort #2 am: 15.05.07 - 09:01:44 »
Also doch nur mit JS. Sehr sehr schade...

Aber vielen Dank für den Tipp trotz allem.
Lotus Notes ist ein sehr mächtiges und rätselhaftes Programm. Und seine Macht wird nur von seiner Rätselhaftigkeit übertroffen.

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz