I am working with asp.net tab control currently with two tabs. The first tab is a list of jobs to be worked. The gridview id is "gvJobs". I call the ScrollableGridPlug via
$(document).ready(
function () {
$('[id*=gvJobs]').Scrollable({
ScrollHeight: 450
});
});
The gridview for this tab works fine, however, the second tab is a list of equipment available for use. The id for this gridview is "grEquip". I call the scrollableplugin via
$(document).ready(
function () {
$('[id*=grEquip]').Scrollable({
ScrollHeight: 450
});
});
When i click at the Equip Tab is get a blank gridview. There is a scrollbar on the left side indicating there is data in the gridview; however there is nothing visible. What am i doing wrong? Additionally is there a way to scrollable function when I click on the appropriate tab?