Hi – I have a vertical scroll bar nd a grid both defined with the theme ‘energyblue’.
$(“#jqxVerticalScrollBar”).jqxScrollBar(
{ theme: ‘energyblue’, width: 18, height: 800, min: 0, max: 1000, vertical: true }
);
and
$(“#jqxgrid”).jqxGrid(
{
theme: ‘energyblue’,
width: 1500,
height: 800,
source: dataAdapter,
etc.
If I have the elements defined in html like this:
<div style=’margin-top: 10px;’ id=’jqxVerticalScrollBar’></div>
<div style=”margin-left: 30px; float: left” id=”jqxgrid”></div>
The scroll bar keeps the correct theme but obviously this is no good as it ends up positioned above the grid.
If I have the elements defined like this:
<span style=’margin-top: 10px;’ id=’jqxVerticalScrollBar’></span>
<span style=”margin-left: 30px; float: left” id=”jqxgrid”></span>
The elements are positioned ok but the theme for the vertical scroll bar is apparently clobbered, meaning it has a white background and arrows instead of blue like the grid scroll bar has.
Is there a way to correct this?
Thanks