Is it possible to place chceckboxes inside LazyTreeGrid ?
Maybe there is some plugin that would automatically update the selected object and fire onSelectionChanged event ?
Thanks for help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The treegrid has a bug in terms of checkbox.
{ field: "isSelected",name: "Selected", width: "6em", editable:"true",alwaysEditing:"true",cellType:"dojox.grid.cells.Bool"},Will show the checkbox. But it will not provide you the value when you check/uncheck the value.
To fix it, you need to do this:
{ field: "recvid",name: "Selected", width: "6em",formatter:formatCheckBox},