Click here to Skip to main content
15,914,452 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Getting the Excepption ExceptionType Newtonsoft.Json.JsonSerializationException in my Web API Pin
indian14317-May-17 12:14
indian14317-May-17 12:14 
Questionhow can i add gridview in asp.net page using c# Pin
Joker87AHAHAH10-May-17 7:26
Joker87AHAHAH10-May-17 7:26 
AnswerRe: how can i add gridview in asp.net page using c# Pin
User 418025414-May-17 19:04
User 418025414-May-17 19:04 
Questionpage doesnot autopostback on radio button Pin
prog.sidra10-May-17 2:25
prog.sidra10-May-17 2:25 
AnswerRe: page doesnot autopostback on radio button Pin
User 418025414-May-17 19:07
User 418025414-May-17 19:07 
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 

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.