Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    listgrid scroll bar dissapear

    I can't get scrollbar in my listgrid
    here is the code of the page,:
    isc.ListGrid.create({
    ID: "countries",
    left:0, top:0, width:300, height:140, alternateRecordStyles: true, showAllRecords: true, canReorderFields: false, leaveScrollbarGap: false, canSort: false,
    canHover: null,
    dataSource: "countries",
    autoFetchData: true
    });

    in the body of my html section I have this:
    <BODY bgcolor="#666666" style="overflow-y:hidden;overflow-x:hidden">
    what's wrong?
    thanks

    #2
    Don't give your ListGrid the same global ID as the DataSource.

    Comment

    Working...
    X