kinghat / tabbed-card

a custom card for home assistant that utilizes tabs to segregate individual cards.
MIT License
87 stars 10 forks source link

Value can't be changed on Windows 11 machine #108

Closed Tsarre closed 11 months ago

Tsarre commented 11 months ago

Hello,

I use a combination of the swipe card and the tab card. This works fine on my android phone, but not on a windows machine. On windows (11) I can’t change the value (I don’t get a cursor) ?!

I don't know if this is a problem of the tab card or the swipe card...

So this works fine :

` type: custom:tabbed-card options: {} tabs:

But this doesn't :

` type: custom:swipe-card cards:

ildar170975 commented 11 months ago
  1. Post a FORMATTED code. Currently your code is not readable. Place a code inside a triple "`". image

  2. If your tabbed-card works fine w/o swipe-card - then probably the swipe-card is a culprit. Try this simple code:

    type: custom:swipe-card
    cards:
    - type: entities
    entities:
      - sun.sun
      - sun.sun
      - sun.sun
      - input_text.test_text
      - input_boolean.test_boolean
      - input_number.test_value_uom
      - input_datetime.test_datetime
      - input_select.test_value
      - sun.sun
      - sun.sun
    
    - type: entities
    entities:
      - sun.sun
      - sun.sun
      - sun.sun

    изображение Currently in FF & Chrome (Win, at least in Win10 + FF 115.0, Chrome 115.0.5790.171) a user CANNOT edit values in input fields for: -- input_number (box mode); -- input_text; -- input_datetime (for time); -- input_time. But it works in Companion App iOS (at least in 15.x.).

There is a workaround - adding this option:

type: custom:swipe-card
cards:
  ... 
parameters:
  touchStartPreventDefault: false

which allows to edit controls.

Tsarre commented 11 months ago

Hello,

This did the trick :

parameters: touchStartPreventDefault: false

Thank you very much !

Greetings

Op zo 6 aug 2023 om 17:18 schreef ildar170975 @.***>:

1.

Post a FORMATTED code. Currently your code is not readable. Place a code inside a triple "`". [image: image] https://user-images.githubusercontent.com/71872483/258649607-67ee8879-6e79-4d8f-9db9-af1843bae5ba.png 2.

If your tabbed-card works fine w/o swipe-card - then probably the swipe-card is a culprit. Try this simple code:

type: custom:swipe-card cards:

  • type: entities entities:

    • sun.sun
    • sun.sun
    • sun.sun
    • input_text.test_text
    • input_boolean.test_boolean
    • input_number.test_value_uom
    • input_datetime.test_datetime
    • input_select.test_value
    • sun.sun
    • sun.sun
  • type: entities entities:

    • sun.sun
    • sun.sun
    • sun.sun

[image: изображение] https://user-images.githubusercontent.com/71872483/258650933-3a04ce05-0909-460d-92d0-45f7b5500b76.png Currently in FF & Chrome (Win, at least in Win10 + FF 115.0, Chrome 115.0.5790.171) a user CANNOT edit values in input fields for: -- input_number (box mode); -- input_text; -- input_datetime (for time); -- input_time. But it works in Companion App iOS (at least in 15.x.).

There is a workaround - adding this option:

type: custom:swipe-card cards: ... parameters: touchStartPreventDefault: false

which allows to edit controls.

— Reply to this email directly, view it on GitHub https://github.com/kinghat/tabbed-card/issues/108#issuecomment-1666893601, or unsubscribe https://github.com/notifications/unsubscribe-auth/AW2H5ACUD3HT65HWNZXY53LXT6YVHANCNFSM6AAAAAA3FXEQMI . You are receiving this because you authored the thread.Message ID: @.***>

ildar170975 commented 11 months ago

Close the issue then.