Back to Devexpress

ASPxClientListBox.ClearItems Method

aspnet-js-aspxclientlistbox-0e8d3562.md

latest1.8 KB
Original Source

ASPxClientListBox.ClearItems Method

Removes all items from the client list box editor.

Declaration

ts
ClearItems(): void

Example

The code sample below demonstrates how you can respond to a file manager selection change on the client side.

Note

The complete sample project is available in the DevExpress local or online demos.

javascript
function fileManager_SelectionChanged(s, e) {
     filesList.ClearItems();
     var selectedFiles = s.GetSelectedItems();
     for(var i = 0; i < selectedFiles.length; i++) {
          filesList.AddItem(selectedFiles[i].name);
     }
     document.getElementById("filesCount").innerHTML = selectedFiles.length;
}
aspx
<dx:ASPxListBox ID="ASPxListBox1" ClientInstanceName="filesList" runat="server" Height="250px" Width="100%" />

Selected count: <strong id="filesCount">0</strong>

<dx:ASPxFileManager ID="ASPxFileManager1" ClientInstanceName="fileManager" runat="server">
     <Settings EnableMultiSelect="true" RootFolder="~/Content/FileManager/Files/Images" InitialFolder="Product icons" ThumbnailFolder="~/Content/FileManager/Thumbnails"/>
     <ClientSideEvents SelectionChanged="fileManager_SelectionChanged" />
</dx:ASPxFileManager>

See Also

RemoveItem(index)

AddItem(text)

Clear()

List Box

ASPxClientListBox Class

ASPxClientListBox Members