jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts

  • PBDeveloper
    Participant

    Hello Hristo,

    I saw the example that you provided where the jqxGrid is used instead of the jqxListbox. The grid is a different JQX plugin than that of the listbox:

    1. Does this mean that the jqxListBox cannot handle a volume of items bigger than 2,000 and the jqxGrid should be used instead?
    2. As for my example:

    
    $('#jqxSelectAll').on('click', function () {
      var items = $("#listbox").jqxListBox('getCheckedItems');
      if (items.length > 0) {
        $("#listbox").jqxListBox('uncheckAll');
      } else {
        $("#listbox").jqxListBox('checkAll');
      }
    });
    

    3. Is there something I can do with the jqxListBox that will allow it to handle more items? Perhaps wire it differently etc. The issue is really tied to volume from my observation because the functionality works just fine as long as its with a small number.

Viewing 1 post (of 1 total)