Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8963995
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:29:05+00:00 2026-06-15T16:29:05+00:00

I have a jqxGrid which I have a few checkboxes in. What I need

  • 0

I have a jqxGrid which I have a few checkboxes in.
What I need to do is find an event which fires when the checkbox is changed.
I have tried:

  • changed
  • cellbeginedit
  • cellendedit
  • cellvaluechanged
  • cellvaluechanging

.
All to no avail.

I do not want to fire and event for when any cell is changed, just this one checkbox.

Any ideas on how this might be accomplished?

I have included the code below.

The checkbox is the ‘Re-Cert’ line

$("#ModulesGrid").jqxGrid({
        width: 890,
        height: 350,
        theme: modulesTheme,
        columnsresize: true,
        source: dataAdapter,
        pageable: true,
        editable: true,
        columns: [
                  { text: 'Module Name', datafield: 'modulename', width: 100, editable: false },
                  { text: 'Optional', datafield: 'Optional', columntype: 'checkbox', width: 100 },
                  { text: 'Assigned', datafield: 'Assigned', width: 80 , columntype: 'checkbox'},
                  { text: 'Pass', datafield: 'pass',cellsrenderer: radioRenderer,width: 50, editable: false },
                  { text: 'NC', datafield: 'nc',cellsrenderer: radioRenderer,width: 50, editable: false },
                  { text: 'Fail', datafield: 'fail',cellsrenderer: radioRenderer,width: 50, editable: false },
                  { text: 'Re-Cert', datafield: 'recert', columntype: 'checkbox', width: 50, cellvaluechanged: function(event){alert(1);}},
                  { text: 'Re-Cert Reason', datafield: 'reason', width: 100, editable: false},
                  { text: 'Prior Cert', datafield: 'priorcert', width: 50, editable: false }
              ]
    });

here is a link to the API: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-api.htm

Edit: It would not let me tag this under jqWidget as that tag does not exist and I do not have 1500 rep. Sorry is this confuses.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T16:29:06+00:00Added an answer on June 15, 2026 at 4:29 pm

    I had a similar issue with this while working with this plugin.

    So instead of the inbuilt event , I tried assigning the click event to the element by using a checkbox image and assigning the event to the image.

    Also I noticed that you are not binding the cellbeginedit or the cellendedit event ..

    $("#ModulesGrid").bind('cellbeginedit', function (event) {
         var args = event.args;
      alert("Column: " + args.datafield + ",
               Row: " + (1 + args.rowindex) + ", Value: " + args.value);
    });
    

    And remove the event from the Definition and bind it like above

    { text: 'Re-Cert', datafield: 'recert', columntype: 'checkbox', width: 50 },
    

    UPDATE

    If thats the case you can handle the cellsrenderer method of that particular column..

    var columncheckboxRenderer = function(row, column, value) {
        var html;
            html = '<span style="margin:4px;float:left" onclick="clickImage(this,'
                    + row + ')"><img alt="selectme" class="image-unchecked" '  
                    +  src="../../Images/checkbox_off.png"/></span>';
    
        return html;
    }
    
    { text: 'Re-Cert', datafield: 'recert',  width: 50,
              cellsrenderer: columncheckboxRenderer, renderer: header},
    

    Then write up the click event for the check box… That should get the work done for .. This is the way i handled the logic for my requirement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a checkbox column in my JqGrid which get loaded from DB, so
I have a navigation menu which I need to include on all my pages....through
I have a JQuery grid which I am reloading everytime when some event occurs
I have a jqGrid with which users will select records. A large number of
I have create the the jqgrid which loads the data from the server ,
in my jqgrid i have field in a table which represents the id and
I have a asp.net webforms page in which I'm using the jqGrid component. The
I have a jqgrid, where it has a custom formatter to column1. I need
I have a few columns that are very long and i want to show
I have the following jQuery code which I'm using to populate a jqGrid. It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.