Not all JS files show in Library Drop Down
When working in the 2016 beta, there is a drop down for Library in the Action section. I'm unable to determine how to search (which might be my problem) but by default it shows just the first 50 (or maybe 20, didn't count) js files, and of course, the file that I wanted to select, didn't make the cut.
Please make lookup allow for "fuzzy" search, and/or validate that the library exists that is selected.

This issue is fixed 3.0.17 – thanks everyone for their help!
Scott
7 comments
-
Hans Müller commented
In the solution/silverlight edition (version 2.0.1.3) I can only see two libraries of the four that are added to the solution loaded (of which three are also added to the form).
Might that be related to this issue?
Either way: Did anyone else experience this issue aswell?
Does anyone know why it occurs?
Is there anything you can do about it? -
This issue is fixed 3.0.17 - thanks everyone for their help!
Scott -
Sukh Gill commented
Hi Scott
I also encounter this issue but have worked around it as below comment. Previously the Ribbon Workbench would only display JavaScript libraries of those that were added to the solution when clicking the magnifying icon which was a better approach in my opinion.
Thanks
SukhP.S. Keep up the good work
-
Mitch Milam commented
Scott,
A couple of things related to this issue>
1. You need to filter the web resources returned to eliminate the system web resources. Here is the filter criteria I use. It's in LINQ so you'll have to adapt it to JavaScript, of course.
where !c.Name.StartsWith("msxb_")
where !c.Name.StartsWith("msdyn_")
where c.IsHidden.Value == false
where c.ComponentState.Value == 02. There is indeed a 50-record limit on the JavaScript library list.
3. In order for the search criteria to work correctly, you have to use SQL wildcards, instead of *, or just performing the search assuming a partial name. You may wish to reexamine your search functionality to make it a bit more in line with the way CRM does it.
4. The edit box for the library functions oddly. You can't select text, only insert or delete.
Thanks, Mitch
-
Matthew Webb commented
Hi Scott - I am using the latest HTML RW (F***ing awesome I say !), I too am also encountering this issue (I have a fairly large amount of web resources (as different ADX Components/independent addons etc) and the search does not resolve all web resources - only a select few. It does allow me to enter part of the JS and returns 4-5 results filtered but never finds the resource I am looking for the more of the name I type in. (Chrome if that helps)
-
Did you manage to get the search working?
-
Hi Daryl,
The lookup should allow you to enter part of the js webresource and pressing return searches. Could you try this and check it works for you?Thanks for beta testing!
Scott