jQWidgets Forums

jQuery UI Widgets Forums Grid Detect checkbox state change

Tagged: , ,

This topic contains 2 replies, has 2 voices, and was last updated by  Shaun 6 years, 1 month ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Detect checkbox state change #103689

    Shaun
    Participant

    Good Afternoon. I can’t figure out how to detect state change on a checkbox.

    leftGrid.jqxGrid({
          width: 500,
          source: dataAdapter,
          editable: true,
          selectionmode: 'checkbox',
          columns: [
            { text: 'Item ID', datafield: 'id', width: 75, editable: false },
            { text: 'Description', datafield: 'description', width: 250, editable: false },
            { text: 'Size', datafield: 'size', width: 50, editable: false },
            { text: 'Gender', datafield: 'gender', width: 75, editable: false }
          ]
        });

    This got me started, but I can’t seem to find a complete event reference to work through gathering more properties.

    	 leftGrid.on('rowselect', function (event)
    	  {
    		  var args = event.args;
    		  alert(event.args);
    	  });

    Thanks,
    Shaun McArthur

    Detect checkbox state change #103740

    Martin
    Participant

    Hello Shaun McArthur,

    Please, look at the following Example.

    Best Regards,
    Martin

    jQWidgets Team
    http://www.jqwidgets.com/

    Detect checkbox state change #103748

    Shaun
    Participant

    perfect, thanks Martin.

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.