/
var
/
www
/
vhosts
/
bsbdokum.com.tr
/
httpdocs
/
admin
/
assets
/
js
/
pages
/
crud
/
forms
/
widgets
/
/var/www/vhosts/bsbdokum.com.tr/httpdocs/admin/assets/js/pages/crud/forms/widgets
mkdir
upload
Name
Size
Mode
Actions
autosize.js
478
0644
edit
dl
rm
autosize.min.js
185
0644
edit
dl
rm
bootstrap-datepicker.js
3349
0644
edit
dl
rm
bootstrap-datepicker.min.js
1734
0644
edit
dl
rm
bootstrap-daterangepicker.js
5409
0644
edit
dl
rm
bootstrap-daterangepicker.min.js
3324
0644
edit
dl
rm
bootstrap-datetimepicker.js
2255
0644
edit
dl
rm
bootstrap-datetimepicker.min.js
1185
0644
edit
dl
rm
bootstrap-maxlength.js
4363
0644
edit
dl
rm
bootstrap-maxlength.min.js
2775
0644
edit
dl
rm
bootstrap-multipleselectsplitter.js
456
0644
edit
dl
rm
bootstrap-multipleselectsplitter.min.js
222
0644
edit
dl
rm
bootstrap-select.js
379
0644
edit
dl
rm
bootstrap-select.min.js
141
0644
edit
dl
rm
bootstrap-switch.js
342
0644
edit
dl
rm
bootstrap-switch.min.js
146
0644
edit
dl
rm
bootstrap-timepicker.js
1438
0644
edit
dl
rm
bootstrap-timepicker.min.js
721
0644
edit
dl
rm
bootstrap-touchspin.js
3196
0644
edit
dl
rm
bootstrap-touchspin.min.js
1700
0644
edit
dl
rm
clipboard.js
490
0644
edit
dl
rm
clipboard.min.js
219
0644
edit
dl
rm
form-repeater.js
3560
0644
edit
dl
rm
form-repeater.min.js
1138
0644
edit
dl
rm
google-recaptcha.js
391
0644
edit
dl
rm
google-recaptcha.min.js
93
0644
edit
dl
rm
input-mask.js
2175
0644
edit
dl
rm
input-mask.min.js
921
0644
edit
dl
rm
ion-range-slider.js
1763
0644
edit
dl
rm
ion-range-slider.min.js
727
0644
edit
dl
rm
jquery-mask.js
1510
0644
edit
dl
rm
jquery-mask.min.js
890
0644
edit
dl
rm
nouislider.js
8441
0644
edit
dl
rm
nouislider.min.js
3757
0644
edit
dl
rm
select2.js
5847
0644
edit
dl
rm
select2.min.js
2646
0644
edit
dl
rm
tagify.js
25021
0644
edit
dl
rm
tagify.min.js
18067
0644
edit
dl
rm
typeahead.js
5438
0644
edit
dl
rm
typeahead.min.js
2706
0644
edit
dl
rm
Edit:
/var/www/vhosts/bsbdokum.com.tr/httpdocs/admin/assets/js/pages/crud/forms/widgets/typeahead.js
(5438B)
// Class definition var KTTypeahead = function() { var states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming' ]; // Private functions var demo1 = function() { var substringMatcher = function(strs) { return function findMatches(q, cb) { var matches, substringRegex; // an array that will be populated with substring matches matches = []; // regex used to determine if a string contains the substring `q` substrRegex = new RegExp(q, 'i'); // iterate through the pool of strings and for any string that // contains the substring `q`, add it to the `matches` array $.each(strs, function(i, str) { if (substrRegex.test(str)) { matches.push(str); } }); cb(matches); }; }; $('#kt_typeahead_1, #kt_typeahead_1_modal').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'states', source: substringMatcher(states) }); } var demo2 = function() { // constructs the suggestion engine var bloodhound = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace, // `states` is an array of state names defined in \"The Basics\" local: states }); $('#kt_typeahead_2, #kt_typeahead_2_modal').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'states', source: bloodhound }); } var demo3 = function() { var countries = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace, // url points to a json file that contains an array of country names, see // https://github.com/twitter/typeahead.js/blob/gh-pages/data/countries.json prefetch: HOST_URL + '/api/?file=typeahead/countries.json' }); // passing in `null` for the `options` arguments will result in the default // options being used $('#kt_typeahead_3, #kt_typeahead_3_modal').typeahead(null, { name: 'countries', source: countries }); } var demo4 = function() { var bestPictures = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: HOST_URL + '/api/?file=typeahead/movies.json' }); $('#kt_typeahead_4').typeahead(null, { name: 'best-pictures', display: 'value', source: bestPictures, templates: { empty: [ '<div class=\"empty-message\" style=\"padding: 10px 15px; text-align: center;\">', 'unable to find any Best Picture winners that match the current query', '</div>' ].join('\n'), suggestion: Handlebars.compile('<div><strong>{{value}}</strong> – {{year}}</div>') } }); } var demo5 = function() { var nbaTeams = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: HOST_URL + '/api/?file=typeahead/nba.json' }); var nhlTeams = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('team'), queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: HOST_URL + '/api/?file=typeahead/nhl.json' }); $('#kt_typeahead_5').typeahead({ highlight: true }, { name: 'nba-teams', display: 'team', source: nbaTeams, templates: { header: '<h3 class=\"league-name\" style=\"padding: 5px 15px; font-size: 1.2rem; margin:0;\">NBA Teams</h3>' } }, { name: 'nhl-teams', display: 'team', source: nhlTeams, templates: { header: '<h3 class=\"league-name\" style=\"padding: 5px 15px; font-size: 1.2rem; margin:0;\">NHL Teams</h3>' } }); } return { // public functions init: function() { demo1(); demo2(); demo3(); demo4(); demo5(); } }; }(); jQuery(document).ready(function() { KTTypeahead.init(); });
Save
cmd:
run