Kiarash,
Either in the style property of the panel or in a style sheet, give the panel a specific height and add overflow = auto like so:
In a style sheet:
.panelClass {
height: 200px;
overflow: auto;
}
or in the style property:
height: 200px;overflow: auto;
HTH
Keith