When using virtual scrolling and the data changes, then it might be desireable to programmatically scroll to top or to scroll to a row containing the data of interest.
Whenever the column is resized in a way so only part of the headertext is shown, I would like a tooltip to appear. Earlier we did something like this with jQuery if(this.offsetWidth < this.scrollWidth && !$this.attr('title')){ $this.attr('title', $this.text()); } Should be possible to provide a tooltip-template (not just set title attribute)
Need the ability to reorder columns and access the current configuration to store and load on next time user access the site. Already exists on other products on the market and Kendo Grid for jQuery http://demos.telerik.com/kendo-ui/grid/column-reordering
Any plans on creating a Distinct Filter for the grid? One like Wijmo has? https://ibb.co/fo7gwQ
The first row of the grid should be selected as default, in case some data on the screen depends upon the selection in the grid without the need for the user to select one to show information.
In Grid set Filter next Grid Column (http://demos.telerik.com/kendo-ui/grid/filter-menu-customization) like normal Kendo Grid Filter.
I want to display my data in multiple type of views (grid, listview ...etc). So I need to place PagerComponent outside of GridComponent
http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/various/drag-and-drop-rows-between-two-grids
Currently it appears to be impossible to do something as simple as change the background color of a grid row based on data inside it. For instance, I have rows of data that could be "rejected" or not. I want to change the grid row background color for "rejected" rows.
We are seeing warning that <template> is deprecated and to use <ng-template> instead. Can this be addressed? Is the May release going to compatible with Angular 4?
Currently it seems that the columns widths are just divided up between the available width and the number of columns. Under that circumstance I am unable to specify a smaller width for a column. I would like for the column to adjust to the title at a minimum. Also it would be nice if we could drag the columns widths bigger or smaller.
In Grid inline editing right now when we click on addnew row ,new row is adding as the first row of grid. can we get feature like when we can add new row at specific position in the grid
The behavior is inspired by the responsive utilities of Bootstrap: https://v4-alpha.getbootstrap.com/layout/responsive-utilities/ The column visibility feature may be implemented through the `visibleFrom` and `hiddenFrom` column properties. These allow columns to be shown / hidden based on the **viewport size**. For example, ``` { visibleFrom: 1024, // show column on viewports bigger than or equal to 1024px hiddenFrom: 680 // hide column on viewports bigger than or equal to 680px } ``` We can cater for developers who use Bootstrap by providing presets, based on the Bootstrap 4 responsive monikers - https://v4-alpha.getbootstrap.com/layout/grid/#variables (`xs` / `sm` / `md` / `lg` / `xl`). See the link for the default values. ``` { visibleFrom: "md", // show column on medium-sized viewports (and above) hiddenFrom: "sm" // hide column on small-sized viewports (and above) } ``` The `visibleFrom` and `hiddenFrom` properties influence the default column visibility. The `visible` property overrides the default visibility -- columns declared as `visible: false`, show on every device, and columns with `visible: false` won't show at all. Notice that the `visible` property is The resize sensor component will be used to create the responsive pager, as the pager behavior is related to the grid width and not the viewport width. Interoperability with the column menu (show/hide columns) can be achieved through the use of the `visible` property, to allow the default behavior to be overwritten. This raises problems when the application is switched between different screens, as the menu needs to work with a nullable boolean.
Requested for Kendo UI originally, seems to be common scenario: http://www.telerik.com/forums/automatically-hide-a-column-when-a-user-drags-it-up-to-be-a-group-header
Option to export to CSV, Excel, etc.
Scrolling like this : http://legacy.datatables.net/release-datatables/examples/basic_init/scroll_y_infinite.html Say you have 100.000+ rows of data. With classic or virtual scrolling, you allow your user to go to the last page very easily. It ends up with huge skip parameter, and disastrous load times from the DB. You don't want users to be able to run queries which are at the same time useless and very time-consuming server-side. What you really want is for your user to be able to browse a bit of the data with fast queries, and if he wants something else, he should filter data. Infinite scrolling gives him just that feeling.
hi guys, We are debating between ag-grid for Kendo ui angular 2....what better to use? 1. Does Kendo UI grid supports RTL (Right To Left)? 2.How to implement expandable row In ag grid angular 2 ? 3. How to implement paging In ag grid angular 2
Angular 2 - type script