added get wlan configs, made use of it in coretk, updated node context to allow wlan config during runtime

This commit is contained in:
Blake Harnden 2019-12-13 11:48:36 -08:00
parent b993fadedb
commit 9b16f272b8
5 changed files with 56 additions and 5 deletions

View file

@ -173,6 +173,8 @@ class CanvasNode:
context.add_command(label="Configure", command=self.show_config)
if NodeUtils.is_container_node(self.core_node.type):
context.add_command(label="Services", state=tk.DISABLED)
if is_wlan:
context.add_command(label="WLAN Config", command=self.show_wlan_config)
if is_wlan and self.core_node.id in self.app.core.mobility_players:
context.add_command(
label="Mobility Player", command=self.show_mobility_player