Hi,
I have 2 DIVs which contain dynamically created lists and am using them to force a scroll for each of the lists rather than the whole screen.
If I set the height of the DIVs manually to a defined px then the scrolling works as expected, however, I need to set the height of the DIV dependent on the height of the screen, but cannot seem to achieve this.
I have tried all of the following but cannot get this to work, can you help please?
Appery("mlist_div").height('100px');
Appery("jlist_div").height('100px');
or
Appery("mlist_div").attr("style","height:100px");
Appery("jlist_div").attr("style","height:100px");
or
Appery("mlist_div").css("height","100px");
Appery("jlist_div").css("height","100px");