Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

For some reason, my slider controls have stopped rendering properly on jquery mobile app. I have tried commenting out my css to make sure that my styles hadn't broken it, but this made no difference:

Image

There are no console errors

The following is the html produced for the first slider control:
pre<div class="cell-wrapper">
<!-- dsssm_slider -->
<div data-role="fieldcontain" class="CreateProgressChart_dsssm_slider ui-field-contain">
<input type="number" data-type="range" rerender="dsssm_slider" name="dsssm_slider" dsid="dsssm_slider" id="CreateProgressChart_dsssm_slider" data-theme="f" data-track-theme="f" value="0" min="0" max="5" tabindex="4" class="roundedTable CreateProgressChart_dsssm_slider ui-shadow-inset ui-body-f ui-corner-all ui-slider ui-slider-horizontal ui-widget ui-widget-content" data-mini="false">
</input>
<>
<>/pre

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

slider controls not rendering

Hello Terry,

Could you clarify, what did you change in that app? (JS/Source files/CSS)

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

I am not sure exactly when it went wrong,

The gui shows as it would with the css commented out, so I don't think that is the issue,

I have made changes a js file, but i am not sure exactly what changes have been made since it failed. The js file is as follows:

pre&#47;&#47; Define Score Colours

var score0 = "#000000"; &#47;&#47; rgb(0, 0, 0) black
var score1 = "#800000"; &#47;&#47; rgb(128, 0, 0) darkred
var score2 = "#FF0000"; &#47;&#47; rgb(255, 0, 0) red
var score3 = "#FFA500"; &#47;&#47; rgb(255, 165, 0) orange
var score4 = "#FFFF00"; &#47;&#47; rgb(255, 255, 0) yellow
var score5 = "#00FF00"; &#47;&#47; rgb(0, 255, 0) lime

&#47;&#47; Javascript for slider change events
function sliderChange(e) {
var value = parseInt($(e)&#46;closest("input")&#46;val());
console&#46;log(value);

Code: Select all

 switch(value) { 

     case 0: 
         $(e)&#46;closest("input")&#46;css("color","white")&#46;css("background-color", score0); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score0); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score0); 
         break; 

     case 1:          
         $(e)&#46;closest("input")&#46;css("color","white")&#46;css("background-color", score1); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score1); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score1); 
         break; 

     case 2: 
         $(e)&#46;closest("input")&#46;css("color","white")&#46;css("background-color", score2); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score2); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score2); 
         break; 

     case 3:     
         $(e)&#46;closest("input")&#46;css("color","white")&#46;css("background-color", score3); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score3); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score3); 
         break; 

     case 4:     
         $(e)&#46;closest("input")&#46;css("color","black")&#46;css("background-color", score4); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score4); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score4); 
         break; 

     case 5: 
         $(e)&#46;closest("input")&#46;css("color","white")&#46;css("background-color", score5); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-track")&#46;css("background", score5); 
         $(e)&#46;closest("&#46;ui-field-contain")&#46;find("&#46;ui-slider-handle")&#46;css("background", score5); 
         break; 
 } 

}

&#47;&#47; Javascript class to create Progress Charts

function ProgressReportCreator(
firstName,
lastName,
date,
cockpitDrill,
blindSpots,
steering,
useOfMirrors,
useOfSignals,
adequateClearance,
progressHesitancy,
referencePoints,
peepCreep,
movingOffStopping,
mSM,
mSPSL,
emergencyStop,
hillStart,
overtaking,
awarenessAnticipation,
emergingLeft,
emergingRight,
approachingJunctionsRight,
approachingJunctionsLeft,
tJunctions,
crossroads,
meetingOtherTraffic,
crossingTraffic,
roundabouts,
pedestrianCrossings,
straightLineReversing,
bayParking,
parallelParking,
turnInTheRoad,
leftReverseSharp,
leftReverseSweeping,
rightReverseSharp,
rightReverseSweeping,
showMeTellMe,
independentDriving
) {
&#47;&#47; Initialise Properties
this&#46;firstName = firstName;
this&#46;lastName = lastName;
this&#46;date = date;
this&#46;cockpitDrill = cockpitDrill;
this&#46;blindSpots = blindSpots;
this&#46;steering = steering;
this&#46;useOfMirrors = useOfMirrors;
this&#46;useOfSignals = useOfSignals;
this&#46;adequateClearance = adequateClearance;
this&#46;progressHesitancy = progressHesitancy;
this&#46;referencePoints = referencePoints;
this&#46;peepCreep = peepCreep;
this&#46;movingOffStopping = movingOffStopping;
this&#46;mSM = mSM;
this&#46;mSPSL = mSPSL;
this&#46;emergencyStop = emergencyStop;
this&#46;hillStart = hillStart;
this&#46;overtaking = overtaking;
this&#46;awarenessAnticipation = awarenessAnticipation;
this&#46;emergingLeft = emergingLeft;
this&#46;emergingRight = emergingRight;
this&#46;approachingJunctionsRight = approachingJunctionsRight;
this&#46;approachingJunctionsLeft = approachingJunctionsLeft;
this&#46;tJunctions = tJunctions;
this&#46;crossroads = crossroads;
this&#46;meetingOtherTraffic = meetingOtherTraffic;
this&#46;crossingTraffic = crossingTraffic;
this&#46;roundabouts = roundabouts;
this&#46;pedestrianCrossings = pedestrianCrossings;
this&#46;straightLineReversing = straightLineReversing;
this&#46;bayParking = bayParking;
this&#46;parallelParking = parallelParking;
this&#46;turnInTheRoad = turnInTheRoad;
this&#46;leftReverseSharp = leftReverseSharp;
this&#46;leftReverseSweeping = leftReverseSweeping;
this&#46;rightReverseSharp = rightReverseSharp;
this&#46;rightReverseSweeping = rightReverseSweeping;
this&#46;showMeTellMe = showMeTellMe;
this&#46;independentDriving = independentDriving;
}

Code: Select all

 &#47;&#47; add methods 

 ProgressReportCreator&#46;prototype&#46;setColor = function(doc, score) { 
     switch(score) { 
         case 0:  
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(0, 0, 0); 
             break; 
         case 1: 
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(139, 0, 0); 
             break; 
         case 2: 
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(255, 0, 0); 
             break; 
         case 3: 
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(255, 165, 0); 
             break; 
         case 4: 
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(255, 255, 0); 
             break; 
         case 5: 
             doc&#46;setDrawColor(0, 0, 0); 
             doc&#46;setFillColor(0, 80, 0); 
             break; 
     } 
 }; 

 ProgressReportCreator&#46;prototype&#46;createPDF = function() { 

     &#47;&#47; Create Document Object 
     var doc = new jsPDF("landscape", "mm", "a4"); 

     &#47;&#47; Title 
     doc&#46;setFontSize(22); 
     doc&#46;text("Progress Report Chart", 150,20, "center"); 
     &#47;&#47;black line colour 
     doc&#46;setDrawColor(0, 0, 0); 
     &#47;&#47;width 
     doc&#46;setLineWidth(0&#46;5); 
     &#47;&#47;vertical axis 
     doc&#46;line(20,30,20,190); 
     &#47;&#47;horizontal axis 
     doc&#46;line(20,130,270,130); 

     &#47;&#47;Date 
     doc&#46;setFontSize(22); 
     doc&#46;text("Date: " + moment(this&#46;date)&#46;format("DD-MMM-YYYY"),280,20,"right"); 

     &#47;&#47;Name 
     doc&#46;text("Name: " + this&#46;firstName + " " + this&#46;lastName,20,20); 

     &#47;&#47;Key 
     doc&#46;setFontSize(10); 
     doc&#46;text("Key:", 100,40); 

     doc&#46;setFontSize(10); 

     this&#46;setColor(doc, 1); 
     doc&#46;roundedRect(120,36,5,5,1,1, "FD"); 
     doc&#46;text("1&#46; introduced",126,40); 

     this&#46;setColor(doc, 2); 
     doc&#46;roundedRect(151, 36, 5, 5, 1, 1, 'FD');         
     doc&#46;setDrawColor(0,0,0); 
     doc&#46;text("2&#46; Beginner", 158,40); 

     this&#46;setColor(doc, 3); 
     doc&#46;roundedRect(184,36,5,5,1,1, "FD"); 
     doc&#46;setDrawColor(0,0,0); 
     doc&#46;text("3&#46; Intermediate", 190,40); 

     this&#46;setColor(doc, 4); 
     doc&#46;roundedRect(216,36,5,5,1,1, "FD"); 
     doc&#46;setDrawColor(0,0,0); 
     doc&#46;text("4&#46; Advanced", 222,40); 

     this&#46;setColor(doc, 5); 
     doc&#46;roundedRect(248,36,5,5,1,1, "FD"); 
     doc&#46;setDrawColor(0,0,0); 
     doc&#46;text("5&#46; Test", 254,40); 

     &#47;&#47;X- Axis titles 
     doc&#46;setFillColor(0,0,0); 
     doc&#46;setFontSize(10); 
     doc&#46;text("DSSSM / Cockpit Drill",24,180,90); 
     doc&#46;text("Blind Spots",31,180,90); 
     doc&#46;text("Steering",38,180,90); 
     doc&#46;text("Use of Mirrors",45,180,90); 
     doc&#46;text("Use of Signals",52,180,90); 
     doc&#46;text("Adequate Clearance",59,180,90); 
     doc&#46;text("Progress, Hesitancy",66,180,90); 
     doc&#46;text("Reference Points",73,180,90); 
     doc&#46;text("Peep & Creep",80,180,90); 
     doc&#46;text("Moving Off & Stopping",87,180,90); 
     doc&#46;text("MSM",94,180,90); 
     doc&#46;text("MSPSL",101,180,90); 
     doc&#46;text("Emergency Stop",108,180,90); 
     doc&#46;text("Hill Start",115,180,90); 
     doc&#46;text("Overtaking",122,180,90); 
     doc&#46;text("Awareness & Anticipation",129,180,90); 
     doc&#46;text("Emerging (Left)",136,180,90); 
     doc&#46;text("Emerging (Right)",143,180,90); 
     doc&#46;text("Approaching Junctions (Right)",150,180,90); 
     doc&#46;text("Approaching Junctions (Left)",157,180,90); 
     doc&#46;text("T-Junctions",164,180,90); 
     doc&#46;text("Crossroads",171,180,90); 
     doc&#46;text("Meeting Other Traffic",178,180,90); 
     doc&#46;text("Crossing Traffic",185,180,90); 
     doc&#46;text("Roundabouts",192,180,90); 
     doc&#46;text("Pedestrian Crossings",199,180,90); 
     doc&#46;text("Straight line Reversing",206,180,90); 
     doc&#46;text("Bay Parking",213,180,90); 
     doc&#46;text("Parallel Parking",220,180,90); 
     doc&#46;text("Turn in the Road",227,180,90); 
     doc&#46;text("Left Reverse (Sharp)",234,180,90); 
     doc&#46;text("Left Reverse (Sweeping)",241,180,90); 
     doc&#46;text("Right Reverse (Sharp)",248,180,90); 
     doc&#46;text("Right Reverse (Sweeping)",255,180,90); 
     doc&#46;text("Show Me / Tell Me",262,180,90); 
     doc&#46;text("Independent Driving",269,180,90); 

     &#47;&#47;data 

     &#47;&#47;DSSSM / Cockpit Drill 
     this&#46;setColor(doc, this&#46;cockpitDrill); 
     doc&#46;rect(20,130,7,this&#46;cockpitDrill * (-15), "FD"); 

     &#47;&#47;Blind Spots 
     this&#46;setColor(doc, this&#46;blindSpots); 
     doc&#46;rect(27,130,7,this&#46;blindSpots * (-15), "FD"); 

     &#47;&#47;Steering 
     this&#46;setColor(doc, this&#46;steering); 
     doc&#46;rect(34,130,7,this&#46;steering * (-15), "FD"); 

     &#47;&#47;Use of Mirrors 
     this&#46;setColor(doc, this&#46;useOfMirrors); 
     doc&#46;rect(41,130,7,this&#46;useOfMirrors * (-15), "FD"); 

     &#47;&#47;Use of Signals 
     this&#46;setColor(doc, this&#46;useOfSignals); 
     doc&#46;rect(48,130,7,this&#46;useOfSignals * (-15), "FD"); 

     &#47;&#47;Adequate Clearance 
     this&#46;setColor(doc, this&#46;adequateClearance); 
     doc&#46;rect(55,130,7,this&#46;adequateClearance * (-15), "FD"); 

     &#47;&#47;Progress, Hesitancy, Normal Positioning 
     this&#46;setColor(doc, this&#46;progressHesitancy); 
     doc&#46;rect(62,130,7,this&#46;progressHesitancy * (-15), "FD"); 

     &#47;&#47;Reference Points 
     this&#46;setColor(doc, this&#46;referencePoints); 
     doc&#46;rect(69,130,7,this&#46;referencePoints * (-15), "FD"); 

     &#47;&#47;Peep & Creep 
     this&#46;setColor(doc, this&#46;peepCreep); 
     doc&#46;rect(76,130,7,this&#46;peepCreep * (-15), "FD"); 

     &#47;&#47;Moving Off & Stopping 
     this&#46;setColor(doc, this&#46;movingOffStopping); 
     doc&#46;rect(83,130,7,this&#46;movingOffStopping * (-15), "FD"); 

     &#47;&#47;MSM 
     this&#46;setColor(doc, this&#46;mSM); 
     doc&#46;rect(90,130,7,this&#46;mSM * (-15), "FD"); 

     &#47;&#47;MSPSL 
     this&#46;setColor(doc, this&#46;mSPSL); 
     doc&#46;rect(97,130,7,this&#46;mSPSL * (-15), "FD"); 

     &#47;&#47;Emergency Stop 
     this&#46;setColor(doc, this&#46;emergencyStop); 
     doc&#46;rect(104,130,7,this&#46;emergencyStop * (-15), "FD"); 

     &#47;&#47;Hill Start 
     this&#46;setColor(doc, this&#46;hillStart); 
     doc&#46;rect(111,130,7,this&#46;hillStart * (-15), "FD"); 

     &#47;&#47;Overtaking 
     this&#46;setColor(doc, this&#46;overtaking); 
     doc&#46;rect(118,130,7,this&#46;overtaking * (-15), "FD"); 

     &#47;&#47;Awareness & Anticipation 
     this&#46;setColor(doc, this&#46;awarenessAnticipation); 
     doc&#46;rect(125,130,7,this&#46;awarenessAnticipation * (-15), "FD"); 

     &#47;&#47;Emerging (Left) 
     this&#46;setColor(doc, this&#46;emergingLeft); 
     doc&#46;rect(132,130,7,this&#46;emergingLeft * (-15), "FD"); 

     &#47;&#47;Emerging (Right) 
     this&#46;setColor(doc, this&#46;emergingRight); 
     doc&#46;rect(139,130,7,this&#46;emergingRight * (-15), "FD"); 

     &#47;&#47;Approaching Junctions (Right) 
     this&#46;setColor(doc, this&#46;approachingJunctionsRight); 
     doc&#46;rect(146,130,7,this&#46;approachingJunctionsRight * (-15), "FD"); 

     &#47;&#47;Approaching Junctions (Left) 
     this&#46;setColor(doc, this&#46;approachingJunctionsLeft); 
     doc&#46;rect(153,130,7,this&#46;approachingJunctionsLeft * (-15), "FD"); 

     &#47;&#47;T-Junctions 
     this&#46;setColor(doc, this&#46;tJunctions); 
     doc&#46;rect(160,130,7,this&#46;tJunctions * (-15), "FD"); 

     &#47;&#47;Crossroads 
     this&#46;setColor(doc, this&#46;crossroads); 
     doc&#46;rect(167,130,7,this&#46;crossroads * (-15), "FD"); 

     &#47;&#47;Meeting Other Traffic 
     this&#46;setColor(doc, this&#46;meetingOtherTraffic); 
     doc&#46;rect(174,130,7,this&#46;meetingOtherTraffic * (-15), "FD"); 

     &#47;&#47;Crossing traffic 
     this&#46;setColor(doc, this&#46;crossingTraffic); 
     doc&#46;rect(181,130,7,this&#46;crossingTraffic * (-15), "FD"); 

     &#47;&#47;Roundabouts 
     this&#46;setColor(doc, this&#46;roundabouts); 
     doc&#46;rect(188,130,7,this&#46;roundabouts * (-15), "FD"); 

     &#47;&#47;Pedestrian Crossings 
     this&#46;setColor(doc, this&#46;pedestrianCrossings); 
     doc&#46;rect(195,130,7,this&#46;pedestrianCrossings * (-15), "FD"); 

     &#47;&#47;Straight Line Reversing 
     this&#46;setColor(doc, this&#46;straightLineReversing); 
     doc&#46;rect(202,130,7,this&#46;straightLineReversing * (-15), "FD"); 

     &#47;&#47;Bay Parking 
     this&#46;setColor(doc, this&#46;bayParking); 
     doc&#46;rect(209,130,7,this&#46;bayParking * (-15), "FD"); 

     &#47;&#47;Parallel Parking 
     this&#46;setColor(doc, this&#46;parallelParking); 
     doc&#46;rect(216,130,7,this&#46;parallelParking * (-15), "FD"); 

     &#47;&#47;Turn in the Road 
     this&#46;setColor(doc, this&#46;turnInTheRoad); 
     doc&#46;rect(223,130,7,this&#46;turnInTheRoad * (-15), "FD"); 

     &#47;&#47;Left Reverse(Sharp) 
     this&#46;setColor(doc, this&#46;leftReverseSharp); 
     doc&#46;rect(230,130,7,this&#46;leftReverseSharp * (-15), "FD"); 

     &#47;&#47;Left Reverse (Sweeping) 
     this&#46;setColor(doc, this&#46;leftReverseSweeping); 
     doc&#46;rect(237,130,7,this&#46;leftReverseSweeping * (-15), "FD"); 

     &#47;&#47;Right Reverse (Sharp) 
     this&#46;setColor(doc, this&#46;rightReverseSharp); 
     doc&#46;rect(244,130,7,this&#46;rightReverseSharp * (-15), "FD"); 

     &#47;&#47;Right Reverse (Sweeping) 
     this&#46;setColor(doc, this&#46;rightReverseSweeping); 
     doc&#46;rect(251,130,7,this&#46;rightReverseSweeping * (-15), "FD"); 

     &#47;&#47;Show Me / Tell Me 
     this&#46;setColor(doc, this&#46;showMeTellMe); 
     doc&#46;rect(258,130,7,this&#46;showMeTellMe * (-15), "FD"); 

     &#47;&#47;Independent Driving 
     this&#46;setColor(doc, this&#46;independentDriving); 
     doc&#46;rect(265,130,7,this&#46;independentDriving * (-15), "FD"); 

     return doc&#46;output('datauristring'); 
 }; 

 ProgressReportCreator&#46;prototype&#46;displayAsJPG = function(uristring) { 
     Apperyio&#46;storage&#46;pdfurl&#46;set(uristring); 
     pdf2jpg&#46;execute(); 
 }; 

 ProgressReportCreator&#46;prototype&#46;createPDFAndDisplayAsJPG = function() { 
     var uristring = this&#46;createPDF(); 
     this&#46;displayAsJPG(uristring); 
 }; 

 ProgressReportCreator&#46;prototype&#46;emailProgressReport = function() {  
     &#47;&#47; Prepare parameters  
     var to = Apperyio&#46;storage&#46;progressChartView&#46;get("$['client_email']"); 
     var toName = Apperyio&#46;storage&#46;progressChartView&#46;get("$['client_firstname']") + " " + Apperyio&#46;storage&#46;progressChartView&#46;get("$['client_lastname']"); 
     var bcc = Apperyio&#46;storage&#46;instructor&#46;get("$['email']"); 
     var bccName; 
     if(Apperyio&#46;storage&#46;instructor&#46;get("$['businessName']") !== "") { 
         bccName = Apperyio&#46;storage&#46;instructor&#46;get("$['businessName']"); 
     } else { 
         bccName = Apperyio&#46;storage&#46;instructor&#46;get("$['firstName']") + " " + Apperyio&#46;storage&#46;instructor&#46;get("$['lastName']"); 
     } 
     var fromName = bccName; 
     var subject = "Driver's Progress Chart"; 
     var body = "[b]Progress Chart - " + moment(this&#46;date)&#46;format("DD-MMM-YYYY") + "[/b]"; 
     var filename = "progresschart - " + moment(this&#46;date)&#46;format("DD-MMM-YYYY"); 
     var jpg = Apperyio&#46;storage&#46;jpgurl&#46;get(); 
     var pdf = Apperyio&#46;storage&#46;pdfurl&#46;get(); 

     &#47;&#47;execute service 
     emailChart&#46;execute({ 
         data: { 
             "to" : to, 
             "toName" : toName, 
             "bcc" : bcc, 
             "bccName" : bccName, 
             "fromName" : fromName, 
             "subject" : subject,  
             "body" : body, 
             "filename" : filename, 
             "jpg" : jpg, 
             "pdf" : pdf 
         } 
     }); 
 }; 

&#47;&#47; Define object variable
var progressReportCreator;
/pre

I can't see anything in that file which would affect the slider rendering.

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

As a test I created a brand new page with just a slider component on it it has the same problem, therefore the issue must be in a loaded javascript or a CSS I think.

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

Just to test I create a blank page with just a slider control, it has the same issue: Image

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

I am sure is is not that js above either as i have commented that out and the problem persists. Is there an easy way to temporarily remove scripts without having to comment them out?. There are so many scripts in my code that it would take some time to isolate what is causing the issue

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

temporarily disabling javscript will allow the slider to render, so the issue is somewhere in the javascript?

Next i tried removing each javascript file one at a time, testing without that js in place and then putting the js back if it had no effect. i have removed each of my javascripts in turn and none of them seems to have affected the slider rendering.

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

slider controls not rendering

We are very sorry, but this is something outside the scope (https://docs.appery.io/docs/general-s...) of our standard support.

Please provide us with a public app link (https://docs.appery.io/docs/testingan...) and exact steps to reproduce this problem.

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

The App is shared with support, It is called OWD for Instructors. It runs a test page that just contains a slider control, which is not rendering correctly

Terry Gilliver
Posts: 0
Joined: Fri Apr 18, 2014 8:45 pm

slider controls not rendering

I have found out the problem. I had loaded the jqueryui library to try out its functionality, but it seems that it is not compatible with jquery mobile.

Return to “Issues”