ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
Select only child rows in a tree grid
Title:
B
I
{code}
?
In a tree grid, I need to be able to select on click only child rows, not parent nodes (parent rows). Is there a way to do this ?
Save Changes
Cancel
Arash Ansari
asked at 21 Apr 2024
Answers
B
I
{code}
?
You could use this js: $(function () { $('#TreeGrid1').on('click', '.awe-row:not(.awe-ghead)', function () { var row = $(this); row.toggleClass('awe-selected'); }); });
Save Changes
Cancel
Omu
answered at 21 Apr 2024
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK