4.1.2 Rename Input Parameters

An admin user can rename the input parameters in the notebooks.

  1. Login to Data Studio.
  2. Navigate to the Investigation Toolkit folder.
  3. Open the desired notebook.
  4. Open the notebook and navigate to the Click to Start Investigation paragraph in ECM Integration L1 and Special Investigation notebooks or Entity Summary Risk Report paragraph in the ECM Case Narrative notebook.
  5. Click on the Visibility icon and select the Code option.
  6. Navigate to the line IHub ihub = new Ihub(ds, session, visualQuery);
  7. Update the value by adding a line just after the above line with ihub.dynamicForms. followed by variable_name and then the value.
    For example:
    ihub.dynamicForms.addressTextBox = "Complete Address"; 
  8. To update another value, add the additional line as above.
    For example, with multiple parameter updates as follows:
    IHub ihub = new IHub(ds, session, visualQuery);
    ihub.dynamicForms.addressTextBox = "Complete Address";
    ihub.config.nameTextBox = "Full Name";