Click here to Skip to main content
15,890,512 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: page doesnot autopostback on radio button Pin
senthilaaru18-May-17 4:34
senthilaaru18-May-17 4:34 
Questionasp .net and angular2 Pin
Member 121448819-May-17 19:59
Member 121448819-May-17 19:59 
AnswerRe: asp .net and angular2 Pin
Richard MacCutchan9-May-17 21:32
mveRichard MacCutchan9-May-17 21:32 
GeneralRe: asp .net and angular2 Pin
Member 1214488110-May-17 5:03
Member 1214488110-May-17 5:03 
GeneralRe: asp .net and angular2 Pin
Richard MacCutchan10-May-17 5:24
mveRichard MacCutchan10-May-17 5:24 
AnswerRe: asp .net and angular2 Pin
Afzaal Ahmad Zeeshan10-May-17 5:27
professionalAfzaal Ahmad Zeeshan10-May-17 5:27 
QuestionLuck with integrating lightSlider with bootstrap and MVC Pin
jkirkerx9-May-17 8:52
professionaljkirkerx9-May-17 8:52 
AnswerBetter Luck Now Pin
jkirkerx9-May-17 13:38
professionaljkirkerx9-May-17 13:38 
Well I skipped over fixing the lightSlider and added the light-gallery to it. Then used my bower.json file to load both plugins automatically, and gulp to distribute the files correctly throughout the project. After getting all of that to work, I went back to doing research on the lightSlider and started going through a handful of tutorials.

Finally found this one
Js Tutorial - lightSlider - A lightweight touchable responsive Content slider
Which seemed to offer the best information on how to set it up.
So if all boiled down to the config file. So to save any one having the same trouble, here's a sample of what I used.
Still messing with the responsive properties to see how they work. Now that I have a stronger foundation, I can now build it out.

Overall, this lightSlider plugin is pretty slick, and the guy did a nice job writing it.
$(document).ready(function () {

    $('#lightSlider').lightSlider({
        item: 1,
        autoWidth: false,
        slideMove: 1, // slidemove will be 1 if loop is true
        slideMargin: 10,

        addClass: '',
        mode: "slide",
        useCSS: true,
        cssEasing: 'ease', //'cubic-bezier(0.25, 0, 0.25, 1)',//
        easing: 'linear', //'for jquery animation',////

        speed: 400, //ms'
        auto: false,
        loop: false,
        slideEndAnimation: true,
        pause: 2000,

        keyPress: false,
        controls: true,
        prevHtml: '',
        nextHtml: '',

        rtl: false,
        adaptiveHeight: false,

        vertical: false,
        verticalHeight: 500,
        vThumbWidth: 100,

        thumbItem: 10,
        pager: false,
        gallery: true,
        galleryMargin: 5,
        thumbMargin: 5,
        currentPagerPosition: 'middle',

        enableTouch: true,
        enableDrag: true,
        freeMove: true,
        swipeThreshold: 40,

        responsive:
        [
            { breakpoint: 1260, settings: { item: 2, thumbitem: 10, gallery: true, pager: true } },
            { breakpoint: 900, settings: { item: 2, thumbitem: 8, gallery: true, pager: true } },
            { breakpoint: 700, settings: { item: 1, thumbitem: 6, gallery: false, pager: true } },
            { breakpoint: 600, settings: { item: 1, thumbitem: 4, gallery: false, pager: true } }
        ],

        onBeforeStart: function (el) { },
        onSliderLoad: function (el) {
            el.lightGallery({
                selector: '#lightSlider .lslide',
                subHtmlSelectorRelative: true
            });
        },
        onBeforeSlide: function (el) { },
        onAfterSlide: function (el) { },
        onBeforeNextSlide: function (el) { },
        onBeforePrevSlide: function (el) { }
    });

});
If it ain't broke don't fix it

Questionsearch record in gridview on page change reset to the old Pin
prog.sidra9-May-17 1:06
prog.sidra9-May-17 1:06 
AnswerRe: search record in gridview on page change reset to the old Pin
Afzaal Ahmad Zeeshan9-May-17 1:19
professionalAfzaal Ahmad Zeeshan9-May-17 1:19 
QuestionNeed HRMS Application Pin
naveen.prasad1528-May-17 8:43
naveen.prasad1528-May-17 8:43 
AnswerRe: Need HRMS Application Pin
geeta goel8-May-17 8:53
geeta goel8-May-17 8:53 
GeneralRe: Need HRMS Application Pin
naveen.prasad1528-May-17 8:59
naveen.prasad1528-May-17 8:59 
GeneralRe: Need HRMS Application Pin
Richard MacCutchan8-May-17 21:08
mveRichard MacCutchan8-May-17 21:08 
GeneralRe: Need HRMS Application Pin
naveen.prasad1523-Nov-17 7:18
naveen.prasad1523-Nov-17 7:18 
GeneralRe: Need HRMS Application Pin
geeta goel4-Nov-17 22:53
geeta goel4-Nov-17 22:53 
GeneralRe: Need HRMS Application Pin
naveen.prasad1525-Nov-17 19:24
naveen.prasad1525-Nov-17 19:24 
GeneralRe: Need HRMS Application Pin
geeta goel6-Nov-17 6:36
geeta goel6-Nov-17 6:36 
AnswerRe: Need HRMS Application Pin
Richard MacCutchan8-May-17 8:53
mveRichard MacCutchan8-May-17 8:53 
AnswerRe: Need HRMS Application Pin
David Mujica8-May-17 9:19
David Mujica8-May-17 9:19 
QuestionProblem converting itextsharp from htmlWorker to xmlWorker Pin
samflex6-May-17 12:33
samflex6-May-17 12:33 
AnswerRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
Richard Deeming8-May-17 2:06
mveRichard Deeming8-May-17 2:06 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
samflex9-May-17 7:10
samflex9-May-17 7:10 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
Richard Deeming10-May-17 0:38
mveRichard Deeming10-May-17 0:38 
GeneralRe: Problem converting itextsharp from htmlWorker to xmlWorker Pin
samflex12-May-17 9:26
samflex12-May-17 9:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.