⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • How can I get the previous value of a field and use it in the action code?
  • Strong action blocking by server conditions
  • At what moment is the data for the action codes taken?
  • Cross-execution of actions
  • Opening a nested temporary table and returning data to the parent table
  • Features of calling linkToInput and linkToButtons from popups
  • Relative list and number changes via set
  • Inserting rows after a certain row when sorting by order field
  • Using listReplace to execute actions
  • Using the panels of other tables
  • How to open the file upload window?
  • Using an arbitrary form in linkToInput
  • How to perform actions on the rows highlighted with checks?
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • Using an arbitrary form in linkToInput

    An example of using the html form

    In linkToInput, there is an option to insert your own custom form. What will be passed to $#input is the content of the hidden textarea field with id="ttmInput":


    =:
    linkToInput(title: "Test"; html: "<div id='testInputForm'><div style='display: grid; grid-template-columns: 1fr 1fr'><select name='lang' class='form-control'><option>Eng</option><option>Ru</option></select><select name='type' class='form-control'><option>Single</option><option>Multiple</option></select></div><textarea class='form-control' name='title' placeholder='Enter title here'></textarea></div><textarea id='ttmInput' style='display:none'></textarea><script>function testInputForm(){let val={}; $('#testInputForm').find('select,textarea').each((k, v)=>{ val[v.name] = v.value }); $('#ttmInput').val(JSON.stringify(val))}; testInputForm(); $('#testInputForm').on('change keyup', 'select,textarea', testInputForm) </script>" ; code: $code; refresh: true; button: "Save") code: "=: set(table: $#ntn; field: 'h_testpole' = $#input)"