I've looked at the DevExpress HTML grid, and when switching pages when AJAX-bound, the vertical scroll is put to the top. I don't know anyone who would want to stay vertically scrolled to the bottom when switching to another grid page.
When using Kendo AJAX-bound grid and switching pages, the vertical scrollbar stays where it was on the previous page. Is this a bug or did you just let that be something we have to do ourselves?

Hi, Dev Team!
I use Cards with "k-card-deck" class. How i can do stretched link in every "k-card" inside "k-card-deck"?
need something like that:
<div class="k-card-deck">
<div class="k-card">
</div>
<div class="k-card"></div>
</div>

Hi
I'm using a multiselect and trying to select 2 values programmatically but only the first is really showing. Here is a piece of code of what i'm doing.
var multi= $("#pilotProgram").data("kendoMultiSelect");
multi.value(["1", "2"]);
multi.trigger("change");
Thank you
Hi,
I'm trying to follow this example - https://www.telerik.com/forums/best-way-to-dynamically-build-pareto-chart and sort the funnel chart using the dataBound event, but unfortunately it doesn't work. Please check my dojo - http://dojo.telerik.com/OJUcikOr . My requirements are to group the data by the category property and then to sort it desc.
Waiting for an advice.
Best Regards, Boyan.
Hi,
Whats up with the k-link class not apply any hyperlink styles?
I got the class from here: https://docs.telerik.com/kendo-ui/styles-and-layout/appearance-styling#common-css-classes. but when I apply it, it actually removed styling, see dojo https://dojo.telerik.com/edUQOkop.
Please advise,
Grant

Hi,
I hoping this will be a easy answer.
I have a grid and to keep it simple it only has two columns. Quantity and Value. There is an additional JavaScript variable called 'price'. In this example price = 10.
Quantity is inline editable, and Value is defined in the schema as being { editable: false }
When the user clicks the Quantity cell and enters a new number, I need the cell next to it (Value) to recalculate and display the new number in Quantity * price.
So, initially the grid row would be Quantity 0, Value 0.
User enters 10 in Quantity. Value changes to 100.
For some reason I just can't get this to work. Any help would be appreciated!