Studio for ASP.NET Wijmo

Edit clientside C1gridview

  •  pissewit1p said 1 year ago:

    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

  •  AbdiasM13p said 1 year ago:

    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

  •  pissewit1p said 1 year ago:

    Hello,

    I double click the checkbox columns but nothing happens ?
    I can click 10 times on the checkbox but noting happens ??

    Greets,
    John

  •  AbdiasM13p said 1 year ago:

    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

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

You must be logged in to reply to this topic.