You must be logged in to reply to this topic.
Hello,
I have a checkbox column on my gridview.
Every other column I can edit, mostly text en number columns.
But wich hack do I have to do, to edit he checkbox column?
Greets,
John
Hi John,
You need to double click on the CheckBox Column to make it editable.
Let me know if you’re still facing any issues.
Regards
Hello,
I double click the checkbox columns but nothing happens ?
I can click 10 times on the checkbox but noting happens ??
Greets,
John
Hello John,
I apologize for the delay on this.
Please use the following jQuery to make the Checkboxes enabled and editable.
$(document).ready(function () {
setTimeout(enableCheckBox, 1000);
});
function enableCheckBox() {
$(".wijdata-type-boolean").find("input").each(function (index, elem) {
if (elem.type == 'checkbox’)
elem.disabled = false;
})
}
Regards
You must be logged in to reply to this topic.
As a leading component vendor in the Microsoft Visual Studio Industry Partner program, ComponentOne has been providing the widest range of Microsoft Visual Studio components, IDE platform development tools, and applications for over 22 years. ComponentOne product lines encompass custom WinForms, ASP.NET, WPF, Silverlight, Mobile, and COM components, documentation tools, and Web Parts for Microsoft Office SharePoint Server and Windows SharePoint Services.
Contact ComponentOne: 1.800.858.2739 | Pittsburgh: 412.681.4343
©2013 ComponentOne LLC All Rights Reserved.
All product and company names herein may be trademarks of their respective owners.
ComponentOne holds a license under Patent No. 5,490,216 (which expires on September 21, 2013)
