hello –
i am using the wonderful jqxdropdown (but all jqwidgets are wonderful). my url contains parameters.
on lines 9 & 14 of the demos.js file, its picking up my url parameters (following the question-mark) as the theme. i specified the “energy.blue” theme. are we not allowed to use URL parameters when using jqwidgets dropdownlist for some reason?
my url:
http://comptonpeslonline(dot)com/php/messagePlay(dot)php?teacherEmail=annemarie(at)ispeakclearly(dot)com&clientEmail=fzaman785(at)gmail(dot)com
demos.js file:
function getDemoTheme() {
var theme = document.body ? $.data(document.body, ‘theme’) : null
if (theme == null) {
theme = ”;
}
else {
return theme;
}
var themestart = window.location.toString().indexOf(‘?’); // line 9
if (themestart == -1) {
return ”;
}
var theme = window.location.toString().substring(1 + themestart); // line 14
if (theme.indexOf(‘(‘) >= 0)
{
theme = theme.substring(1);
}
UPDATE: this is the error i am seeing in the chrome inspect-console window.
GET http://comptonpeslonline(dot)com/jqwidgets/styles/jqx.teacherEmail=annemarie(at)ispeakclearly(dot)com&clientEmail=fzaman785(at)gmail(dot)com(dot)css
(anonymous function) @ jquery-1.11.3.min.js:4
m.fn.extend.domManip @ jquery-1.11.3.min.js:4
m.fn.extend.append @ jquery-1.11.3.min.js:4
getDemoTheme @ demos.js:54
(anonymous function) @ demos.js:65