0

I am using compound card and showing final details to the user but it is also being clicked, which is leading nowhere and I am not intended to proceed on click. So how to stop that click from being triggered?

on-click {
       intent {
             goal: MainChoice
             value-set:MultipleID{$expr(singleId)}
             }
       }
Rahul Gupta
  • 972
  • 11
  • 29

2 Answers2

0

The on-click key is optional. Simply omit the code you have defining an on-click event and the card will not be clickable.

Ameya
  • 880
  • 6
  • 13
  • I am not using `on-click` key in my layout but still it is getting clicked – Rahul Gupta Feb 13 '19 at 06:02
  • I would suggest that you open a ticket with the support team as this looks like a question where we would need to look at your entire capsule. The best way to file a support ticket would be to open Bixby Studio and select the "Contact Support" options from the Help dropdown menu found in the top navigation bar. – Ameya Feb 13 '19 at 17:59
0

I just figured out that I am using list-of to list down the answer. So after list-of, all we have to do is make has-details key to false. So code will look like this

list-of (array) {
      has-details (false)
      where-each (one) {
        compound-card {
           // content
        }
    }
 }
Rahul Gupta
  • 972
  • 11
  • 29