-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2026 lines (1944 loc) · 106 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta role="banner" name="description" content="" />
<title role="banner" >USAID Evidence Gap Map</title>
<!-- Bootstrap core CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<!-- Bootstrap Multiselect -->
<!-- <link rel="stylesheet" href="css/bootstrap-multiselect.css" type="text/css"/> -->
<!-- Font Awesome -->
<link href="css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/vue-multiselect.min.css">
<!-- Custom styles -->
<link href="css/igd-egm.css" rel="stylesheet" />
<!-- Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NGC205TYXG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NGC205TYXG');
</script>
</head>
<body class="d-flex flex-column h-100">
<div id="app" v-cloak>
<transition>
<div v-if="loading" class="d-flex justify-content-center">
<div class="spinner-border loading-spinner" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div v-else>
<keep-alive include="egm_layout">
<router-view :documents="documents" :filter_categories="filter_categories"></router-view>
</keep-alive>
</div>
</transition>
</div>
<footer class="footer mt-auto bg-dark">
<div class="wash-200">
<div class="container-fluid">
<div class="row py-4">
<div class="col-lg-3 desc-col text-center text-lg-left">
<p class="my-0 text-muted pb-4 pb-lg-0">
This work is a partnership between USAID, the University of
Notre Dame, and Purdue University. It is funded under grant #AID-7200AA18CA00009.
</p>
</div>
<div class="col-lg-9">
<div class="row brand-line">
<div class="col-sm-3 py-3">
<button tabindex="0" class="router-button" onclick="location.href='https://www.usaid.gov'" target ="_blank">
<img
src="images/usaid-logo.png"
class="img-fluid img-65"
alt="USAID Dame"
/>
</button>
</div>
<div class="col-sm-3 py-3">
<button tabindex="0" class="router-button" onclick="location.href='https://stemedhub.org/groups/laserpulse/aboutus'" target ="_blank">
<img
src="images/purdue-laser-pulse.png"
class="img-fluid img-65"
alt="Purdue LASER PULSE logo"
/>
</button>
</div>
<div class="col-sm-3 py-3">
<button tabindex="0" class="router-button" onclick="location.href='https://www.nd.edu'" target ="_blank">
<img
src="images/nd_mark_blue.png"
class="img-fluid img-50"
alt="Notre Dame logo"
/>
</button>
</div>
<div class="col-sm-3 py-3">
<button tabindex="0" class="router-button" onclick="location.href='https://www.purdue.edu'" target ="_blank">
<img
src="images/purdue.png"
class="img-fluid img-50"
alt="Purdue logo"
/>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row py-3 cpy-line">
<div class="col-md-6">
<p class="text-white-50 mb-0 text-center text-md-left">
Copyright © 2020
<button tabindex="0" class="router-button" onclick="location.href='https://www.nd.edu'" class="text-reset" >
University of Notre Dame</button>
</p>
</div>
<div class="col-md-6">
<p class="text-white-50 mb-0 text-center text-md-right">
<button tabindex="0" class="router-button text-reset" onclick="location.href='https://pulte.nd.edu'"
>Pulte Institute for Global Development</button>
</p>
</div>
</div>
</div>
</footer>
<script type="text/x-template" id="egm-layout">
<div>
<header>
<a class="skip-link" href='#Body'>Skip to content</a>
<div class="bg-dark">
<div class="container" id="top-container">
<div class="row mt-3 mb-2 align-items-center">
<div class="col-md-6 col-lg-5">
<h1 id="egm-title" class="my-0 text-vb-lt-blue"><span>Private Sector Engagement</span><br/>Evidence Gap Map</h1>
<h2 id="egm-tagline" class="mt-1 mb-0 text-soft font-weight-light header5" >Engagement mapped to key values</h2>
</div>
<div class="col-md-6 col-lg-7">
<p class="p-inst text-soft mt-2 mb-0 d-none d-md-block">
Use the map to identify gaps and locate relevant documents. Click a circle to see the documents matching a particular engagment – value pair. Use filters to narrow the documents displayed on the map, or search for documents in list view.
</p>
<p class="p-inst text-soft mt-2 mb-0 d-none d-md-block">
The Evidence Gap Map could just as easily be called the “Evidence Map”, meaning that it is a visual representation of existing evidence, using a matrix of USAID’s conceptualization of PSE means and value propositions that both the private sector and development actors offer. We hope that by compiling this evidence in one place with a number of filter and search features, we will help facilitate the use of evidence.
</p>
</div>
</div>
</div>
</div>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark" role="menubar">
<!-- <a class="navbar-brand" href="index.html">PSE Evidence Gap Map</a> -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<!-- <li class="nav-item">
<a class="nav-link" href="#">Instructions</a>
</li> -->
<li class="nav-item" role="menuitem">
<button tabindex="0" class="nav-link nav-button" onclick="location.href='./faq.html'">FAQ</button>
</li>
<li class="nav-item" role="menuitem" >
<button tabindex="0"class="nav-link nav-button" onclick="location.href='./files/EVIDENCE_GAP_MAP_USER_MANUAL.pdf'" target="_blank">EGM Instructions</button>
</li>
<li class="nav-item" role="menuitem" >
<button tabindex="0"class="nav-link nav-button" onclick="location.href='./publications.html'">Publications</button>
</li>
</ul>
</div>
</nav>
</header>
<main role="main">
<div class="wash-200">
<div class="container-fluid pt-3 pb-4 mb-4">
<div class="row pb-3 justify-content-center">
<div class="col-auto">
<ul class="nav nav-map-toggle">
<li class="nav-item">
<a class="nav-link disabled" href="#">View:</a>
</li>
<li class="nav-item " >
<router-link tabindex="0" :to="{name: 'egm'}" class="nav-link text-uppercase nav-button" tag="button">Map</router-link>
</li>
<li class="nav-item">
<router-link tabindex="0" :to="{name: 'list'}" class="nav-link text-uppercase nav-button" tag="button">List</router-link>
</li>
</ul>
</div>
</div>
<div class="row no-gutters align-items-center" role="menubar">
<div class="col-md-12">
<div class="row no-gutters filters" id="filter-row">
<div class="col-md-3">
<vue-multiselect role="menu" v-model="filters.region" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['USAID Region']" @input="filter_change">
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }" >
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>USAID Region</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
</vue-multiselect>
<!-- <select class="custom-select" :class="{ 'bg-selected-blue': filters.region !== '' }" id="selector01" v-model="filters.region" @change="filter_change">
<option selected value="">USAID Region</option>
<option v-for="region in filter_categories['USAID Region']">
{{ region }}
</option>
</select> -->
</div>
<div class="col-md-3">
<vue-multiselect role="menu" v-model="filters.country" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Country(ies)']" @input="filter_change" >
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Country(ies)</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
<template slot="option" slot-scope="props">
<div class="option__desc"><span class="option__title">{{ props.option }}</span></div>
</template>
</vue-multiselect>
</div>
<div class="col-md-3">
<vue-multiselect role="menu" v-model="filters.technical_sector" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Technical Sector']" @input="filter_change">
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Technical Sector</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
</vue-multiselect>
</div>
<div class="col-md-3">
<vue-multiselect role="menu" v-model="filters.industry" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Private Sector Industry']" @input="filter_change">
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Private Sector Industry</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
</vue-multiselect>
<!-- <select class="custom-select" :class="{ 'bg-selected-blue': filters.industry !== '' }" id="selector03" v-model="filters.industry" @change="filter_change">
<option selected value="">Private Sector Industry</option>
<option v-for="industry_name in filter_categories['Private Sector Industry']">
{{ industry_name }}
</option>
</select> -->
</div>
</div>
<div class="row no-gutters filters" id="filter-row">
<div class="col-md-4">
<vue-multiselect role="menuitem" v-model="filters.enterprise_type" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Type of Enterprise']" @input="filter_change" >
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Type of Enterprise</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
</vue-multiselect>
<!-- <select class="custom-select" :class="{ 'bg-selected-blue': filters.enterprise_type !== '' }" id="selector04" v-model="filters.enterprise_type" @change="filter_change">
<option selected value="">Type of Enterprise</option>
<option v-for="enterprise_type in filter_categories['Type of Enterprise']">
{{ enterprise_type }}
</option>
</select> -->
</div>
<div class="col-md-4">
<vue-multiselect role="menu" v-model="filters.resource_type" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Type of Document']" @input="filter_change" >
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Type of Document</span>
<!-- <span class="multiselect__single" v-else>USAID Region</span> -->
</template>
</vue-multiselect>
<!-- <select class="custom-select" :class="{ 'bg-selected-blue': filters.resource_type !== '' }" id="selector07" v-model="filters.resource_type" @change="filter_change">
<option selected value="">Resource Type</option>
<option v-for="document_type in filter_categories['Type of Document']">
{{ document_type }}
</option>
</select> -->
</div>
<div class="col-md-4">
<vue-multiselect role="menu" v-model="filters.year" :searchable="false" :multiple="true" :showLabels="false" :closeOnSelect="false" :options="filter_categories['Year']" @input="filter_change" >
<template role="menuitem" tabindex="0" slot="selection" slot-scope="{ values }">
<span class="multiselect__single" v-if="values.length > 1">{{ values.length }} options selected</span>
<span class="multiselect__single" v-else-if="values.length === 1">{{ values[0] }}</span>
<span class="multiselect__single" v-else>Year</span>
</template>
</vue-multiselect>
</div>
</div>
<div class="row no-gutters filters">
<div class="col-md-2 offset-md-5 text-center justify-content-center">
<button tabindex="0" class=" mx-auto btn btn-light btn-sm rounded-pill ml-2 mt-2 mt-md-1 text-small" role="button" title="Reset filters" @click="reset_filters" ><i class="fas fa-redo"></i> Reset Filters</button>
</div>
</div>
</div>
</div> <!-- end filters -->
<div class="row pt-3 justify-content-center">
<div class="col-sm-12 col-lg-8">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search by Author, Title, Key Findings..." aria-label="Search" aria-describedby="basic-addon2" v-model="search" v-on:keyup.enter="filter_change" >
<div class="input-group-append" @click="filter_change" style="cursor:pointer">
<span class="input-group-text" id="basic-addon2"><i class="fas fa-search"></i></span>
</div>
</div>
</div>
</div> <!-- end search bar -->
</div>
</div>
<keep-alive>
<router-view :filtered_documents="filtered_documents" ></router-view>
</keep-alive>
</main>
</div>
</script>
<script type="text/x-template" id="map-component">
<div>
<div v-if="true" class="container-fluid" id="table-container">
<div class="row no-gutters d-none d-lg-block">
<table class="table egm-table" id="combined-table">
<thead>
<tr >
<td scope="col" class="set-group-title-vert-width "> </td>
<td scope="col"></td>
<th scope="colgroup" colspan="5" class="group-title group-title-pse" scope="col" role = "columnheader" tabindex="0" >
Private Sector Value Propositions
<!-- <a
href="#"
data-toggle="tooltip"
data-placement="bottom"
title="PSE, or Private sector engagement, key values are..."
>
<i class="fas fa-info-circle"></i>
</a>-->
</th>
<th scope="colgroup" colspan="5" class="group-title group-title-usaid" role = "columnheader" tabindex="0" >
Development Actor Value Propositions
<!-- <a
tabindex="0"
data-toggle="popover"
data-trigger="focus"
data-placement="bottom"
title="Development Actor Value Propositions"
data-content="Need Text Here"
>
<i class="fas fa-info-circle"></i> -->
<!-- </a> -->
</th>
<td scope="col" class=""></td>
<td scope="col"class="set-group-title-vert-width"></td>
</tr>
<tr id="Body">
<td scope="col"></td>
<td scope="col"></td>
<th
tabindex="0"
scope="col"
class="value"
title="Scale, Sustainability, & Reach"
role = "columnheader"
>
<div class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Scale, Sustainability, & Reach"
data-content="The private sector’s vast financial resources and expertise in market-based solutions have the potential for achieving scale and sustainability in tackling systemic societal challenges. The private sector’s extensive networks and operations provide distribution channels to reach, and communicate with, underserved populations and individuals."
>
<i class="fas fa-info-circle"></i>
</button>
</div>
<div class="clip-content">Scale,</div>
<div class="clip-content">Sustainability,</div>
<div class="clip-content">& Reach</div>
</th>
<th
tabindex="0"
scope="col"
class="value"
title="Ability to Influence Policy"
role = "columnheader"
>
<div class="clip-content" >
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Ability to Influence Policy"
data-content="The private sector’s ability to deliver what host-country governments seek to achieve—such as improved service-delivery, investment, tax revenues, jobs, and life-saving interventions—gives businesses and investors a strong, knowledgeable voice to inform policy that supports transparent, inclusive economic growth."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Ability</div>
<div class="clip-content">to Influence</div>
<div class="clip-content">Policy</div>
</th>
<th
tabindex="0"
scope="col"
class="value"
title="Innovation, Expertise, and Capabilities"
role = "columnheader"
>
<a
class="reset-color"
data-toggle="modal"
data-target="#valueModal"
style="cursor:pointer"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Innovation, Expertise, & Capabilities"
data-content="Businesses and investors can bring innovation and technologies; entrepreneurship; industry expertise; market-based solutions; distribution networks; investment capacity; and managerial and operational expertise, including risk-management."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Innovation,</div>
<div class="clip-content">Expertise,</div>
<div class="clip-content">& Capabilities</div>
</a>
</th>
<th
tabindex="0"
scope="col"
class="value"
title="Efficiency & Effectiveness"
role = "columnheader"
>
<div>
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Efficiency & Effectiveness"
data-content="With improved systems, processes, and logistics, the private sector can bring more efficiency and effectiveness to achieving outcomes."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content"> </div>
<div class="clip-content">Efficiency </div>
<div class="clip-content">& Effectiveness</div>
</th>
<th scope="col" class="value" title="Flexibility & Pace" role = "columnheader" tabindex="0">
<div>
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Flexibility and Pace"
data-content="The private sector is often inherently more flexible than the public sector, as it has a financial incentive to respond quickly to opportunities and develop new markets."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content"> </div>
<div class="clip-content">Flexibility</div>
<div class="clip-content">& Pace</div>
</th>
<th
tabindex = "0"
scope="col"
class="value"
title="Strong In-Country Networks & Relationships"
role = "columnheader"
>
<!-- <div class="clip-content"> -->
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Strong In-Country Networks & Relationships"
data-content="Development Actors have relationships with national and local governments, businesses, faith-based organizations, local community leaders, and civil society that are useful to the private sector in making locally informed plans for market entry, collaboration, and co-investment."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
<div class="clip-content"> Strong</div>
<div class="clip-content">In-Country</div>
<div class="clip-content">Networks</div>
<div class="clip-content">& Relationships</div>
</th>
<th
tabindex = "0"
scope="col"
class="value"
title="Support to Strengthen Enabling Environments"
role="columnheader"
>
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Support to Strengthen Enabling Environments"
data-content="Working with host-country governments, development actors can help create a stronger enabling environment that fosters transparent, inclusive economic growth. Development actors can support policy and regulatory reform that encourages fair and open competition, institutional reforms and the adoption of standards, and government capacity-building."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
<div class="clip-content"> Support</div>
<div class="clip-content">to Strengthen</div>
<div class="clip-content">Enabling</div>
<div class="clip-content">Environments</div>
</th>
<th
tabindex = "0"
scope="col"
class="value"
title="Sectoral Expertise & Knowledge"
role = "columnheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Sectoral Expertise & Knowledge"
data-content="Development actors have wide-ranging technical expertise across development and humanitarian sectors. Development actors offer deep economic, political, conflict, and gender-sensitive understanding of developing markets, market intelligence that can inform and shape private-sector investment, and robust, evidence-based monitoring and evaluation."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Sectoral</div>
<div class="clip-content">Expertise</div>
<div class="clip-content">& Knowledge</div>
</th>
<th
tabindex = "0"
scope="col"
class="value"
title="Risk-Mitigation & Flexible Authorities"
role = "columnheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Risk-Mitigation & Flexible Authorities"
data-content="Development actors can use funds, authorities, and technical expertise to mitigate the risks of investments and “crowd in” public and private resources that further humanitarian and development goals. Development actor technical assistance can ready smaller companies for financing, or help expand their markets."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Risk-Mitigation</div>
<div class="clip-content">& Flexible</div>
<div class="clip-content">Authorities</div>
</th>
<th
tabindex="0"
scope="col"
class="value"
title="Reputation & Credible Convening Power"
role = "columnheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="bottom"
title="Reputation & Credible Convening Power"
data-content="Development actors have strong capabilities in convening actors around business opportunities that address development challenges. Development actors offer a neutral platform for other actors to collaborate in addressing larger challenges."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Reputation</div>
<div class="clip-content">& Credible</div>
<div class="clip-content">Convening</div>
<div class="clip-content">Power</div>
</th>
<td scope="col" class=""></td>
<td scope="col" class=""></td>
</tr>
</thead>
<tbody>
<tr>
<th class="group-title-vert" rowspan="6">
<div class="title-rotate">
Ways We Engage
<!-- <a
href="#"
data-toggle="tooltip"
data-placement="right"
title="We engage in a number of ways..."
>
<i class="fas fa-info-circle"></i> -->
<!-- </a> -->
</div>
</th>
<th
tabindex="0"
scope="row"
class="engage"
title="Information-Sharing & Strategic Alignment"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="right"
title="Information-Sharing & Strategic Alignment"
data-content="Engagement that aims to identify shared interests, respective capabilities, and experiences. It does not necessarily entail investment of financial resources."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Information</div>
<div class="clip-content">-Sharing </div>
<div class="clip-content">& Strategic</div>
<div class="clip-content">Alignment</div>
</th>
<td v-for="index in [0,1,2,3,4]">
<matrix-cell
v-bind:count="filtered_summary[0][index]"
color_base="61,155,180"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 0 })" />
</td>
<td v-for="index in [5,6,7,8,9]">
<matrix-cell
v-bind:count="filtered_summary[0][index]"
color_base="0,47,108"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 0 })" />
</td>
<th
tabindex="0"
scope="row"
class="engage"
title="Information-Sharing & Strategic Alignment"
role="rowheader"
>
<div class="clip-content">
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="left"
title="Information-Sharing & Strategic Alignment"
data-content="Engagement that aims to identify shared interests, respective capabilities, and experiences. It does not necessarily entail investment of financial resources."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Information</div>
<div class="clip-content">-Sharing</div>
<div class="clip-content">& Strategic</div>
<div class="clip-content">Alignment</div>
</th>
<th
class="group-title-vert"
rowspan="6"
>
<div class="title-rotate">
Ways We Engage
<!-- <a
data-toggle="tooltip"
data-trigger="hover"
data-placement="left"
title="We engage in a number of ways..."
>
<i class="fas fa-info-circle"></i> -->
<!-- </a> -->
</div>
</th>
</tr>
<tr>
<th
tabindex="0"
scope="row"
class="engage"
title="Advancing Learning & Market Research"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="right"
title="Advancing Learning & Market Research"
data-content="Engagement that advances shared market research, good practices for PSE, and joint strategic planning and project design within the USAID Program Cycle."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Advancing</div>
<div class="clip-content">Learning & Market Research</div>
</th>
<td v-for="index in [0,1,2,3,4]">
<matrix-cell
v-bind:count="filtered_summary[1][index]"
color_base="61,155,180"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 1 })" />
</td>
<td v-for="index in [5,6,7,8,9]">
<matrix-cell
v-bind:count="filtered_summary[1][index]"
color_base="0,47,108"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 1 })" />
</td>
<th
tabindex="0"
scope="row"
class="engage"
title="Advancing Learning & Market Research"
role="rowheader"
>
<div class="clip-content"><span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="left"
title="Advancing Learning & Market Research"
data-content="Engagement that advances shared market research, good practices for PSE, and joint strategic planning and project design within the USAID Program Cycle."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Advancing</div>
<div class="clip-content"> Learning & Market Research</div>
</th>
</tr>
<tr>
<th
tabindex="0"
scope="row"
class="engage"
title="Harnessing Private Sector Expertise & Innovation"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="right"
title="Harnessing Private Sector Expertise & Innovation"
data-content="Engagement that harnesses innovation, technology, research and development, industry expertise, and/or entrepreneurial skills to achieve development outcomes."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Harnessing</div>
<div class="clip-content">Private Sector</div>
<div class="clip-content">Expertise</div>
<div class="clip-content">& Innovation</div>
</th>
<td v-for="index in [0,1,2,3,4]">
<matrix-cell
v-bind:count="filtered_summary[2][index]"
color_base="61,155,180"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 2 })" />
</td>
<td v-for="index in [5,6,7,8,9]">
<matrix-cell
v-bind:count="filtered_summary[2][index]"
color_base="0,47,108"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 2 })" />
</td>
<th
tabindex="0"
scope="row"
class="engage"
title="Harnessing Private Sector Expertise & Innovation"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="left"
title="Harnessing Private Sector Expertise & Innovation"
data-content="Engagement that harnesses innovation, technology, research and development, industry expertise, and/or entrepreneurial skills to achieve development outcomes."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Harnessing</div>
<div class="clip-content"> Private Sector</div>
<div class="clip-content">Expertise</div>
<div class="clip-content">& Innovation</div>
</th>
</tr>
<tr>
<th
tabindex = "0"
scope="row"
class="engage"
title="Catalyzing Private Sector Resources"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="right"
title="Catalyzing Private Sector Resources"
data-content="Engagement that mobilizes private-sector resources and action – including philanthropy and CSR assets – to address a specific issue and/or objective. This category also includes the unlocking of private investment."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Catalyzing</div>
<div class="clip-content">Private Sector</div>
<div class="clip-content">Resources</div>
</th>
<td v-for="index in [0,1,2,3,4]" tabindex = "0">
<matrix-cell
v-bind:count="filtered_summary[3][index]"
color_base="61,155,180"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 3 })"
tabindex = "0"/>
</td>
<td v-for="index in [5,6,7,8,9]" tabindex = "0">
<matrix-cell
v-bind:count="filtered_summary[3][index]"
color_base="0,47,108"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 3 })" />
</td>
<th
tabindex = "0"
scope="row"
class="engage"
title="Catalyzing Private Sector Resources"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="left"
title="Catalyzing Private Sector Resources"
data-content="Engagement that mobilizes private-sector resources and action – including philanthropy and CSR assets – to address a specific issue and/or objective. This category also includes the unlocking of private investment."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Catalyzing</div>
<div class= "clip-content">Private Sector</div>
<div class="clip-content">Resources</div>
</th>
</tr>
<tr>
<th
tabindex = "0"
scope="row"
class="engage"
title="Strengthening the Enabling Environment"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"
data-placement="right"
title="Strengthening the Enabling Environment"
data-content="Engagement on issues of importance to multiple U.S. and local private-sector actors, such as regulatory reforms, policy, compliance with standards, and government capacity building."
>
<i class="fas fa-info-circle"></i>
</button>
</span>
</div>
<div class="clip-content">Strengthening</div>
<div class= "clip-content">the Enabling</div>
<div class="clip-content">Environment</div>
</th>
<td v-for="index in [0,1,2,3,4]" tabindex = "0">
<matrix-cell
v-bind:count="filtered_summary[4][index]"
color_base="61,155,180"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 4 })" />
</td>
<td v-for="index in [5,6,7,8,9]" tabindex = "0">
<matrix-cell
v-bind:count="filtered_summary[4][index]"
color_base="0,47,108"
@show-docs-modal="build_docs_modal({ value_index: index, way_index: 4 })" />
</td>
<th
tabindex="0"
scope="row"
class="engage"
title="Strengthening the Enabling Environment"
role="rowheader"
>
<div class="clip-content">
<span class="float-right">
<button
class='btn shadow-none'
tabindex="0"
data-toggle="popover"
role="button dialog"