Psst! Did you know DevelopmentNow is a mobile web site design agency?

Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!
all groups > asp.net webcontrols > january 2009 >

asp.net webcontrols : How to deselect item on single select listbox?


rpress
1/3/2006 1:27:01 PM
In a multi-select listbox one may deselect items, but this does not
work in a single select listbox. Has anyone come across a way to do
this? (deselect so that no items are selected)

Thanks
Phillip Williams
1/3/2006 2:23:02 PM
1- Add a HtMLinputButton in the markup
<input type="button" onclick="ClearList();" value="Clear Selections">

and add a corresponding javascript:

<script language="javascript">
function ClearList()
{
var list = document.getElementById("ListBox1");
if (list) list.selectedIndex =-1;
}
</script>

2- Add a Button server control:
<asp:Button ID="btnDeselect" Runat="server" Text="De-Select"></asp:Button>

and in the codebehind:

Private Sub btnDeselect_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnDeselect.Click
ListBox1.ClearSelection()
End Sub

3- You can insert a list item with a blank value for the user to click if
you wish them to deselect a previously selected item, e.g.

Dim li As New ListItem("No Selection", "")
listbox1.Items.Insert(0, li)

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com


[quoted text, click to view]
rpress
1/3/2006 2:46:20 PM


Thanks for the input - I was hoping for a way to deselect simply by
clicking on the selected item.

Phillip Williams
1/3/2006 3:10:03 PM
Unfortunately the default behavior of the ListBox does not allow for
deselecting a selected item by clicking on it. You can try handling the
onclick event to the ListBox (client-side):

<asp:ListBox ID="ListBox1" Runat="server" onclick="toggle();">
<%-- here are the list items --%>
</asp:ListBox>

and in the Javascript

function toggle()
{
var list = window.event.srcElement;
if (list)
{
if (list.selectedIndex == prevIndex) list.selectedIndex=-1;
prevIndex = list.selectedIndex;
}
}

This should produce the effect that you were hoping for; namely "to deselect
simply by clicking on the selected item."

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com


[quoted text, click to view]
rpress
1/3/2006 3:20:19 PM

Thanks, Phillip - I will give it a try!


rpress
1/9/2006 10:15:05 AM

Thanks again - I decided to use the following code on the mousedown
event to give the effect that a right mouse click clears the listbox.

function toggle()// toggle clears single select listbox on mouse down
{
var list = window.event.srcElement;
list.selectedIndex=-1;
}

works for me. ;>)


jake
1/14/2009 7:17:46 PM
Hello,

Just wondering what exactly is prevIndex?

When attempting to use the suggestion below this value does not exist and causes an error.

Thanks


From http://www.google.com.au/search?hl=en&client=firefox-a&rls=org.mozilla:en-GB:official&q=deselect+listbox+previndex&btnG=Search&meta=

Posted via DevelopmentNow.com Groups
AddThis Social Bookmark Button