0

JOIN function combine with checkbox.

Hi, I have a list of Data: "Apple", "Banana", "Durian"

I want it to be like:

(checkbox) Apple

(checkbox) Banana

(checkbox) Durian

In the formular field, I know how to use the join function but, I don't know how to add a checkbox inside that. Have anyone have any Idea how to do it?

9 replies

null
    • szormpas
    • 2 wk ago
    • Reported - view

     Hi, what do you want to do after the selection?

      • Nguyen_Nhat_Dong.1
      • 2 wk ago
      • Reported - view

       

      I want it to middle cross the text I select.

      • szormpas
      • 2 wk ago
      • Reported - view

        Hi, I'm on it. I hope to have something useful for you soon.

      • Nguyen_Nhat_Dong.1
      • 2 wk ago
      • Reported - view

       thanks you so much for that.

    • szormpas
    • 2 wk ago
    • Reported - view

     Hi, 

    I've built a custom To-Do List as a popover in the Floating Widget section of the Dashboard Template project.

    It's worth downloading the latest version (11.3) and checking if this implementation is a good fit for you.

      • Nguyen_Nhat_Dong.1
      • 2 wk ago
      • Reported - view

       Thanks you. But I think I want something more simple than that. and it could be connect with the data of my database. I just want a formular field and it have my data and it combine the check box into that.

    • Fred
    • 2 wk ago
    • Reported - view

    You can use the new function in dynamic choice fields. Create a JSON of your data following a particular format and you are ready to go.

      • szormpas
      • 2 wk ago
      • Reported - view

        Hi,

      We had the same idea, but I think we can do it without JSON.

      I updated the Ninox Template (To-do list) with a dashboard and a dynamic multiple choice field.

      Then I added this code to the "Trigger after update" field to get the same results.

      let x := numbers('My To-Do List');
      for i in select Todo do
          if contains(x, number(i)) then
              i.(Status := "done")
          else
              i.(Status := "work in progress")
          end
      end
      
    • red_kite
    • 2 wk ago
    • Reported - view

    Hi. I creat an share a minichecklist, later a midichecklist on this link: https://forum.ninox.de/t/y4ytm4f/minicheckliste

    It was an experiment, but works. Mirko

Content aside

  • 2 wk agoLast active
  • 9Replies
  • 103Views
  • 4 Following