Hadashboard navigation

I have multiple dashboards that I want to navigate between. I have a navigate.yaml file with all of the dashboards defined as follows:

home:
  widget_type: navigate
  dashboard: "sub1"
  icon_active: fa-home
  icon_inactive: fa-home
camera:
  widget_type: navigate
  dashboard:  "camera"
  icon_active: mdi-camera
  icon_inactive: mdi-camera
frontdoorbig:
  widget_type: navigate
  dashboard: "front-door-big"
  icon_active: mdi-camera
  icon_inactive: mdi-camera

My camera.dash is as follows

widget_margins: [5, 5]
columns: 10
rows: 6
clock:
  widget_type: clock
  widget_style: "font-size 200%:"
  time_style: "color: yellow;"
  date_style: "color: red;"
front_door_camera:
  widget_type: camera
  entity_picture: https://budskiha.duckdns.org:8123/api/camera_proxy/camera.front_door_camera?api_password=xxxxxx
garage:
  widget_type: camera
  entity_picture: https://budskiha.duckdns.org:8123/api/camera_proxy/camera.garage?api_password=xxxxxx
living_room:
  widget_type: camera
  entity_picture: https://budskiha.duckdns.org:8123/api/camera_proxy/camera.living_room?api_password=xxxxx
back_yard:
  widget_type: camera
  entity_picture: https://budskiha.duckdns.org:8123/api/camera_proxy/camera.back_yard?api_password=xxxxx
down_stairs:
  widget_type: camera
  entity_picture: https://budskiha.duckdns.org:8123/api/camera_proxy/camera.down_stairs?api_password=xxxxx
layout:
  - include: navigation-deffinition
  - clock (3x2), front_door_camera (3x2), garage (3x2)
  -
  - living_room (3x2), back_yard (3x2), down_stairs (3x2)
  -
  - home, camera, frontdoorbig

Navigation home, camera, frontdoorbig buttons work great.

I have another dashboard called sub1.dash

clock:
  widget_type: clock
  widget_style: "font-size 200%:"
  time_style: "color: yellow;"
  date_style: "color: red;"
alarm_control_panel:
  entity: alarm_control_panel.alarm_control_panel
  title: Alarm Setting
  widget_style: "background: blue;"
  widget_type: alarm
neo_coolcam_doorwindow_detector_sensor:
  widget_type: binary_sensor
  entity: binary_sensor.neo_coolcam_doorwindow_detector_sensor
  title: Front Door 
  icon_off: mdi-arrow-collapse
  icon_on: mdi-arrow-expand
neo_coolcam_doorwindow_detector_sensor_2:
  widget_type: binary_sensor
  entity: binary_sensor.neo_coolcam_doorwindow_detector_sensor_2
  title: Down Stairs Family  
  icon_off: mdi-arrow-collapse
  icon_on: mdi-arrow-expand
double:
  widget_type: cover
  entity: cover.double
  title: Garage Door
  widget_style: "background: blue;"
  icon_on: mdi-garage-open
  icon_off: mdi-garage
kitchen:
  widget_type: media_with_volume
  entity: media_player.kitchen
  title: Sonos Kitchen
  icon_on: mdi-speaker
  icon_off: mdi-speaker-off
  step: 1
bathroom:
  widget_type: media_with_volume
  entity: media_player.bathroom
  title: Sonos Bathroom
  icon_on: mdi-speaker
  icon_off: mdi-speaker-off
  step: 1
joannie3648s_iphone:
  title: Joannie
  widget_type: device_tracker
  entity: device_tracker.joannie3648s_iphone
  icon_on: fa-female
  icon_off: fa-female
buds_iphone:
  title: Budski
  widget_type: device_tracker
  entity: device_tracker.buds_iphone
  icon_on: fa-male
  icon_off: fa-male
weather:
  widget_type: weather
  entity: group.weather
  units: "°F"
  sub_style: "font-size: 110%; font-weight: bold;"
  main_style: "font-size: 75%; font-weight: bold;" 
  unit_style: "font-size: 250%;"
layout:
  - clock (2x1), sensor.set_point, sensor.current_temp, climate.home, alarm_control_panel, neo_coolcam_doorwindow_detector_sensor, neo_coolcam_doorwindow_detector_sensor_2
  - buds_iphone, joannie3648s_iphone, double, bathroom, kitchen
  - switch.sonoff_power, switch.sonoff_power2, switch.sonoff_power3, switch.zooz_unknown_type0101_id000a_switch
  - weather (2x2)
  - include: navigation-deffinition
  - camera, home, frontdoorbig

Problem is in sub1.dash is the navigation buttons don’t work. Click on them and nothing.

Any idea’s

Thanks

  - weather (2x2)
  - include: navigation-deffinition

in this part you create a problem. the weather widget is overlaying what is below it.
i think this will solve your problem:

  - weather (2x2)
  -
  - include: navigation-deffinition

Thanks for the suggestion. I did as you described but that didn’t work. I did the following and that worked.
moved the button next to “kitchen”.

layout:
  - clock (2x1), sensor.set_point, sensor.current_temp, climate.home, alarm_control_panel, neo_coolcam_doorwindow_detector_sensor, neo_coolcam_doorwindow_detector_sensor_2
  - include: navigation-deffinition
  - buds_iphone, joannie3648s_iphone, double, bathroom, kitchen, camera, frontdoorbig
  - switch.sonoff_power, switch.sonoff_power2, switch.sonoff_power3, switch.zooz_unknown_type0101_id000a_switch
  - weather (2x2)
```.
1 Like