Ask Your Question
1

What is the process of eliminating the vertical scroll bar from a kendo grid?

asked 2021-08-10 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-07-26 21:00:00 +0000

plato gravatar image

To eliminate the vertical scroll bar from a Kendo grid, you can modify the CSS styles of the grid using the following steps:

  1. Target the Kendo grid element using its ID or class selector.
  2. Set the overflow-y property of the grid element to hidden.
  3. Optionally, set the height property of the grid element to a fixed value or use an alternative method to ensure that the grid content fits within the available area.

Here is an example CSS rule:

#myGrid {
    overflow-y: hidden;
    height: 400px; /* optionally set a fixed height */
}
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-08-10 11:00:00 +0000

Seen: 9 times

Last updated: Jul 26 '21