Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Each jQgrid row has multiple checkboxes, so I cannot use (just) the multiselect.

This is how the column is setup...

{ name: 'ColName', label: '', width: 50, editable: true, sortable: false, edittype: "checkbox", formatter: 'checkbox', formatoptions: { disabled:false}, index:"my_checkbox", editoptions: {value:"Yes":"No"} }

When I click the checkbox in the header, the header is redrawn without the check. I can capture the event, but cannot display the check to the user.

So my question would be, how can I get a checkbox to operate normally inside a header label OR how can I implement multiple multiselects.

share|improve this question
The formatter:'checkbox are introduced to display boolean value in the column cells (not in the column header) as a checkbox. How you want to use checkbox in the column header? – Oleg Nov 11 '10 at 20:30

1 Answer

up vote 7 down vote accepted

I was able to fix my problem by preventing the jQgrid events from firing after the checkbox event.

I changed my checkbox to...

<input type="checkbox" onclick="checkBox(event)" />

and added the following method...

function checkBox(e) {
  e = e||event;/* get IE event ( not passed ) */
  e.stopPropagation? e.stopPropagation() : e.cancelBubble = true;
}
share|improve this answer
1  
By the way, you can actually accept your own answer, so others know that there is a solution if they have a similar problem. – adamjford Jan 6 '11 at 20:54
ha, funny. i actually didn't know that. i have accepted it now. – joelnet Feb 4 '11 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.