Forum Discussion

ChadBrandmire's avatar
ChadBrandmire
Qrew Assistant Captain
7 years ago

Create a count on a tab in form

Is there a way to create a count on a tab in a form?

I have a form with a few tabs that have reports. I want to show the total number of records on the report on the tab itself.

3 Replies

  • I was waiting for someone to say you couldn't do this but alas nobody came forward. Using the IOL technique and something like this will do the job:

    $.get(dbidTable, {
      act: "API_GetNumRecords"
    }).then(function(xml) {
      var numRecords = $("num_records", xml).text();
      $("#tab_t1_link a").append(' (${numRecords)');
    });

    Notes:

    (1) This is only the essential code. You will have to modify the code for your specific parameters and repeat the code for each child table.

    (2) The above code will append to the tag name a string counting the number of child records in parentheses:

    Tab 1 (100)  Tab 2 (200) ...
    • ChadBrandmire's avatar
      ChadBrandmire
      Qrew Assistant Captain
      Can't seem to get your code to work. Any suggestions? Can you post more details?
  • MichelleCoslet's avatar
    MichelleCoslet
    Qrew Assistant Captain
    I think I may be looking for the same solution. I have attached a photo of what I am after. Is this code the way to making it happen? I am familiar with Rules and formulas, however coding is far beyond my skill set at this point [I don't even know where to enter codes]. can someone walk me through this?