jQWidgets Forums

jQuery UI Widgets Forums TreeGrid Why does not support checkbox?

Tagged: 

This topic contains 9 replies, has 4 voices, and was last updated by  Martin 6 years, 8 months ago.

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
  • Why does not support checkbox? #65557

    mustafa
    Participant

    hello I see this topic

    http://www.jqwidgets.com/community/topic/treegrid-checkbox/
    but I see only text true : false

                      { text: 'Menu', datafield: 'IsMenu', width: '5%', columnGroup: 'group', threestatecheckbox: false, columntype: 'checkbox' },
                      { text: 'Active', datafield: 'IsActive', width: '5%', columnGroup: 'group', threestatecheckbox: false, columntype: 'checkbox' },

    What do you recommend for me? I can not use because way
    thank you

    Why does not support checkbox? #65563

    Peter Stoev
    Keymaster

    Hi mustafa,

    You can find the available API on the API documentation page about the TreeGrid.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Why does not support checkbox? #65574

    mustafa
    Participant

    I do not understand you
    I have already looked into documents but no documents

    Why does not support checkbox? #65577

    Peter Stoev
    Keymaster

    Hi mustafa,

    The Documentation is available on the Documentation page. Expand jqxTreeGrid to find out the documentation about jqxTreeGrid. The API Documentation can be found there, too. Just click the link API. And the link to the page is: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxtreegrid/jquery-treegrid-api.htm

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Why does not support checkbox? #65596

    mustafa
    Participant

    hello peter
    why? you don’t understand

    Yes I saw there CheckBox but
    but only for the row
    http://jsfiddle.net/jqwidgets/fhbLa/

    can I do for this cell? because columntype this does not working for treegrid..
    example grid
    { text: ‘Active’, datafield: ‘IsActive’, width: ‘5%’, threestatecheckbox: false, columntype: ‘checkbox’ },
    thank you

    Why does not support checkbox? #65599

    Peter Stoev
    Keymaster

    Hi mustafa,

    Where did you saw such API about jqxTreeGrid? There isn’t on our TreeGrid API page. There is no “threestatecheckbox” and there is no “columntype: checkbox” There is no such feature in jqxTreeGrid.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Why does not support checkbox? #65621

    mustafa
    Participant

    hi peter
    ok
    .well
    Is this functionality being planned in the next upgrade? and Do you have any suggestion for me? because
    true false text seem so bad
    thanks

    Why does not support checkbox? #65643

    Peter Stoev
    Keymaster

    Hi mustafa,

    We’ll consider it when we discuss the roadmap. For now, our plans our published online and can be found on the roadmap page.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Why does not support checkbox? #101824

    ErVishalM
    Participant

    I want a checkbox column in JqxTreeGrid. Can somebody tell me how can i achieve it?
    Here is my Code : –

    columns: any[] = [
        { text: 'Name', dataField: 'AssetClassName', align: 'center', width: '70%' },
        { text: 'Code', dataField: 'AssetClassCode', align: 'right', cellsAlign: 'right', width: '20%' },
        {
          text: 'Inactive', dataField: 'Inactive', filtertype: 'checkedlist', align: 'center', cellsAlign: 'center', width: '10%'
          , columnType: 'template',
          createEditor: (row, cellvalue, editor, cellText, width, height) => {
            // construct the editor.
            editor.jqxCheckBox({ checked: false, hasThreeStates: false});
          },
          initEditor: (row, cellvalue, editor, celltext, width, height) => {
            // set the editor's current value. The callback is called each time the editor is displayed.
            editor.jqxCheckBox('checked', cellvalue);
          },
          getEditorValue: (row, cellvalue, editor) => {
            // return the editor's value.
            return editor.val();
          }
        }
      ];

    Right now If i double click on that cell then checkbox shows there but i want active inactive checkbox by default with the saved values.

    Why does not support checkbox? #101842

    Martin
    Participant

    Hello ErVishalM,

    Unfortunately, this functionality is not supported for the jqxTreeGrid for the moment.
    You can follow our updates at our Roadmap and Release History pages.

    Best Regards,
    Martin

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

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

You must be logged in to reply to this topic.