Invalid number of records selected. You must select a maximum of 200 records

I have 12000 targets. How do I increase the limit so I can add 1000 targets to a target list at a time?

This had no effect.

services/module/listview/bulk_actions.yaml:            max: 1001
services/module/listview/bulk_actions.yaml:                    max: 1001:
arameters:
  module.listview.bulk_action:
    default:
      actions:
        delete:
          key: delete
          labelKey: LBL_DELETE
          params:
            min: 1
            displayConfirmation: true
            confirmationLabel: NTC_DELETE_CONFIRMATION_MULTIPLE
          acl:
            - delete
        export:
          key: export
          labelKey: LBL_EXPORT
          params:
            min: 1
          acl:
            - export
        merge:
          key: merge
          labelKey: LBL_MERGE_DUPLICATES
          params:
            min: 2
            max: 5
          acl:
            - edit
            - delete
        massupdate:
          key: massupdate
          labelKey: LBL_MASS_UPDATE
          params:
            allowAll: true
            min: 2
            max: 1001
            recordPanel:
              title: LBL_MASS_UPDATE
              #fields are populated by a mapper
              #fields:
              mode: massupdate
              actions:
                - key: cancel
                  labelKey: LBL_CANCEL
                  modes: ['massupdate']
                - key: bulk-action
                  labelKey: LBL_SUBMIT_BUTTON_LABEL
                  modes: ['massupdate']
                  klass: ['btn', 'btn-danger', 'btn-sm']
                  params:
                    allowAll: false
                    min: 2
                    max: 1001
                    bulkAction: massupdate
                    displayConfirmation: true
                    confirmationLabel: LBL_BULK_ACTION_MASS_UPDATE_CONFIRMATION

Are you a developer? That change probably needs a rebuild of the front end

Hey @jwogrady,

Did you clear cache using php bin/console cache:clear? or run a Quick Repair and Rebuild?

@pgr, thanks for your response.

I’d say I lean more toward devops, but my friends think I’m a programmer. lol Can I rebuild the frontend via the admin repair tools? I tried them,

I tried them all and cleared the cache using the command provided below. Still the same issue.

No, to rebuild the front-end you have to get the dev environment and run Angular builds.

I am not sure if that is needed in order to change that parameter, but the only way to find out is to try…

Or use some other strategy altogether, like adding the Targets directly into the database, it shouldn’t be too complicated…