Forum de discussion
Forum « Programmation Javascript » (archives)
pb d'affichage en grisé
Envoyé: 1er avril 2005, 8h17 par harbonne
Voici ma question du jour:
Je travaille en environnement aspx-vb.net.
J'ai crée une listbox qui récupère les données issues d'une sélection, par le biais d'une requpête sql.
J'aimerais que si un utilisateur saisit dans le champ de recherche( textbox)qui est situé juste au dessus de la listbox, un terme qui appartient à la listbox, alors que celui ci apparaîsse en grise dans la listbox.
voici le code implémenté; pourriez vous me dire ce que vous en pensez, car çà ne fonctionne pas très bien; je vous en remercie.
J'ai choisi de pointer volontairement sur le terme 'Astronomie' qui fait partie de la listbox, mais je souhaite pointer vers tous les termes de la listbox apellée Listbox1.
Merci beaucoup de votre aide.
bien cordialement.
Nathalie
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="recherche_gest_thesaurus.aspx.vb" Inherits="Thesaurus.recherche_gest_thesaurus"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//FR">
<HTML>
<HEAD>
<title>recherche</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<script language="javascript">
function search(Form1)
{
var d = document.Form1.getElementById(ListBox1);
for (x=0 ; x<d.options.length;x++)
{
if (d.options[x].text=="Astronomie")
d.options[x].style.backGroundColor ='gray';
else
d.options[x].style.backGroundColor='white';
}
return true;
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" onsubmit="submit" runat="server">
<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 249px; POSITION: absolute; TOP: 62px" runat="server" Width="284px" Height="31px"></asp:TextBox>
<asp:ListBox id="ListBox1" style="Z-INDEX: 102; LEFT: 139px; POSITION: absolute; TOP: 159px" runat="server" Width="538px" Height="335px"></asp:ListBox>
<asp:Label ID="label_affiche_listealpha" runat="server"></asp:Label>
<asp:Button id="Button1" style="Z-INDEX: 104; LEFT: 338px; POSITION: absolute; TOP: 102px" runat="server" Height="35px" Width="138px" Text="rechercher" OnClick="search(Form1)"></asp:Button>
</form>
</body>
</HTML>
Réponses
|