-
Notifications
You must be signed in to change notification settings - Fork 734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Treeview control changes #10877
base: master
Are you sure you want to change the base?
Treeview control changes #10877
Conversation
9e8fe4d
to
f93e4e9
Compare
} | ||
|
||
get Container() { | ||
return this._container; | ||
} | ||
|
||
static getTreeView(e: any) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need this static?
isn't better to just work on current instance?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, yes, I think it is not needed the static. Thanks.
7efff23
to
4128eb2
Compare
} | ||
|
||
onCheckBoxClick(checkbox: any) { | ||
if (checkbox.checked) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if is disabled? shouldn't do anything then
if (L.DomUtil.hasClass(row, 'disabled'))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know, I am still drafting to equivalent code. Thanks for the notice
72930c7
to
bdfe63d
Compare
Change-Id: Icf084135e9c743d84522b4bc9f09925300363af2 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I60a7d132b5d7bec238b01c02a8833ba08eb36e7e Signed-off-by: Henry Castro <[email protected]>
Change-Id: Ib4c5c2770cbbdb9f56d5219599142893ed0c05c9 Signed-off-by: Henry Castro <[email protected]>
Implicit query checkbox. Change-Id: I01cbf3b6a49babdd594fd481c1785dd7677f6bed Signed-off-by: Henry Castro <[email protected]>
Change-Id: I7299b4efd3ec09f6c14324ad9cbf5dbda82f5104 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I84fcd3eca4aa34f73a8ef3feb613d81266358b14 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I4d367cf704cd784af290969526009df4884d01d4 Signed-off-by: Henry Castro <[email protected]>
Change-Id: Ied04405a87e8d9b5d45d192f4f244262b2fdc9a7 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I92811506d7f71a807f6f747a959eb8636ef3030a Signed-off-by: Henry Castro <[email protected]>
Change-Id: I4e800b4b36d2536991c05c54511c94203da3971f Signed-off-by: Henry Castro <[email protected]>
Change-Id: If04eead274f7f4108a81a40d9eb2beb7fc14094f Signed-off-by: Henry Castro <[email protected]>
Change-Id: I7f09dc79641da4ede273de3cccce3125a52fff69 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I2455da031524c0109e36de5248705d1d01fe4780 Signed-off-by: Henry Castro <[email protected]>
Change-Id: Ic76eb7e0efd46eafbe360d9101560c1ef620a129 Signed-off-by: Henry Castro <[email protected]>
Change-Id: Iaebffa4744fc37b94a46a2e46144061b77bc11a6 Signed-off-by: Henry Castro <[email protected]>
Change-Id: I2c228021cf24db1bbb343c1661a94b22bbe4926d Signed-off-by: Henry Castro <[email protected]>
Change-Id: I2dbc0b9c0bdfff62ba62e878a3060ae4893dfd11 Signed-off-by: Henry Castro <[email protected]>
Change-Id: Ie6f56e81b0242416d2b36faccc43f3cb0278a73c Signed-off-by: Henry Castro <[email protected]>
bdfe63d
to
e8048bb
Compare
Change-Id: Icf084135e9c743d84522b4bc9f09925300363af2
Signed-off-by: Henry Castro [email protected]
Summary
TODO
Checklist
make prettier-write
and formatted the code.make check
make run
and manually verified that everything looks okay