john
john

Reputation: 85

No scroll on a datagrid

Is it possible to disable the scrolls and make them invisible on a datagrid?

thank you

Upvotes: 0

Views: 1651

Answers (2)

Evgenios Skitsanos
Evgenios Skitsanos

Reputation: 136

Sarang, do you have any understanding of the difference between Flex and ASP or you just sticking your 50 cents all over no mater what?

@John:

you wont have scrolls if height of the grid calculated right, something like height="{(this.dataProvider.length*gridRowHeight)+10}" plus u can switch off scrolling policies on your grid.

Upvotes: 1

JeffryHouser
JeffryHouser

Reputation: 39408

To answer your question: Yes!

To solve your problem: Look at horizontalScrollPolicy and verticalScrollPolicy . Set them both to off.

Upvotes: 2

Related Questions