jQWidgets Forums

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts

  • claus
    Participant

    This sounds a little clumsy. For the moment I uncheck & check again items that have been updated, after this “treatment” the item is correctly updated.


    claus
    Participant

    Anyway, here is a little workaround: http://jsfiddle.net/clausdenk/xpXb2/


    claus
    Participant

    This is a pity. The Listbox with checkboxes also performs inconsistently with the standard browser context menu. Sometimes the checkmark is not changed, sometimes it is changed when trying to open the browser context menu. It seems to depend on how fast the mouse is released, if it is release rapidly the check status changes.

    Anyhow, I guess it would be nice to be able to deactivate right-click checking/unchecking, maybe it even should be default. A user expects a context menu to not modifiy any data if no action from the menu is taken.

    Kind regards, Claus

    in reply to: DRAG CHECKBOX DRAG CHECKBOX #56414

    claus
    Participant

    OK, thanks, i just realized there was a new version 2 days ago.

    in reply to: DRAG CHECKBOX DRAG CHECKBOX #56351

    claus
    Participant

    There is a workaround for this, it’s ugly but seems to work:

    var citems;
    // on dragStart, save currently checked items
    $("#name").on('dragStart', function (event) {
      citems = $("#name").jqxListBox('getCheckedItems');
    });
    // restore checked states
    $("#name").on('dragEnd', function (event) {
       $.each(citems,function (index) {
         $("#name").jqxListBox('checkItem', this.label );
       });              
    });
Viewing 5 posts - 1 through 5 (of 5 total)