First Initial
This commit is contained in:
57
wwwroot/BackendScript/js/advanced-form-components.js
Normal file
57
wwwroot/BackendScript/js/advanced-form-components.js
Normal file
@@ -0,0 +1,57 @@
|
||||
|
||||
//multiselect start
|
||||
$('#my_multi_select1').multiSelect();
|
||||
$('#my_multi_select2').multiSelect({
|
||||
selectableOptgroup: true
|
||||
});
|
||||
|
||||
$('#my_multi_select3').multiSelect({
|
||||
selectableHeader: "<input type='text' class='form-control search-input' autocomplete='off' placeholder='search...'>",
|
||||
selectionHeader: "<input type='text' class='form-control search-input' autocomplete='off' placeholder='search...'>",
|
||||
afterInit: function (ms) {
|
||||
var that = this,
|
||||
$selectableSearch = that.$selectableUl.prev(),
|
||||
$selectionSearch = that.$selectionUl.prev(),
|
||||
selectableSearchString = '#' + that.$container.attr('id') + ' .ms-elem-selectable:not(.ms-selected)',
|
||||
selectionSearchString = '#' + that.$container.attr('id') + ' .ms-elem-selection.ms-selected';
|
||||
|
||||
that.qs1 = $selectableSearch.quicksearch(selectableSearchString)
|
||||
.on('keydown', function (e) {
|
||||
if (e.which === 40) {
|
||||
that.$selectableUl.focus();
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
that.qs2 = $selectionSearch.quicksearch(selectionSearchString)
|
||||
.on('keydown', function (e) {
|
||||
if (e.which == 40) {
|
||||
that.$selectionUl.focus();
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
afterSelect: function () {
|
||||
this.qs1.cache();
|
||||
this.qs2.cache();
|
||||
},
|
||||
afterDeselect: function () {
|
||||
this.qs1.cache();
|
||||
this.qs2.cache();
|
||||
}
|
||||
});
|
||||
//multiselect end
|
||||
|
||||
|
||||
//spinner start
|
||||
$('#spinner1').spinner();
|
||||
$('#spinner2').spinner({disabled: true});
|
||||
$('#spinner3').spinner({value:0, min: 0, max: 10});
|
||||
$('#spinner4').spinner({value:0, step: 5, min: 0, max: 200});
|
||||
//spinner end
|
||||
|
||||
//wysihtml5 start
|
||||
|
||||
$('.wysihtml5').wysihtml5();
|
||||
|
||||
//wysihtml5 end
|
||||
Reference in New Issue
Block a user