I was looking through the source code for explorer, and there is a constant defined there called:
var LIMIT_RESOURCES = 100;
Not sure if there is a way to change that via a config setting or via the web interface. If you are a developer, you can see that Do Lookup requests have the format of:
where the limit is LIMIT_RESOURCES + 1. You can even manually set LIMIT_RESOURCES in the console.
{"Level":"Study","Expand":true,"Limit":51,"Query":{"StudyDate":"","AccessionNumber":"test"},"Full":true}
There are a couple of other config options in the config file, but I don't think those affect the Explorer interface.
// The maximum number of results for a single C-FIND request at the
// Patient, Study or Series level. Setting this option to "0" means
// no limit.
"LimitFindResults" : 0,
// The maximum number of results for a single C-FIND request at the
// Instance level. Setting this option to "0" means no limit.
"LimitFindInstances" : 0,