HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. value
    Log in to post
    • All categories
    • d.healeyD

      How to trigger label callback on enter/return but not on focus change?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting label text value update focus
      23
      0 Votes
      23 Posts
      433 Views
      rglidesR

      @Chazrox fr

    • d.healeyD

      How to programmatically change table viewport component values?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting table viewport component default value
      8
      1 Votes
      8 Posts
      272 Views
      d.healeyD

      @d-healey said in How to programmatically change table viewport component values?:

      Any way to have the buttons off by default

      This is possible when setting the table row data

      local listData = []; for (x in data) { local obj = { CheckButton: 0, // Here I can set the button state Name: x.name }; listData.push(obj); } viewport.setTableRowData(listData);