Kendogrid Paging not working using scrollable: virtual is true - kendo-ui

I am using kendogrid but got error with paging
i think if use virtual: true property in this case issue create
Please check below demo url with virtual: true property
https://js.do/code/292359
Recreated step for this issue :
select page no 3
now scrolling in grid
please check page refresh working but after scroll page automatic set to 1 page.

Unfortunately, using virtual scrolling with paging isn't supported according to Telerik support:
The idea of virtual scrolling is to be used without paging. Using both features at the same time is unfortunately not supported.

Related

Vaadin Flow: Grid Select All is ignoring Filtering

Vaadin Framework Version:
23.1.7
Issue
I'm building up a web application using Vaadin. In the view I added a Grid and set
grid.setSelectionMode(Grid.SelectionMode.MULTI);
I also added a FilterField, that filters the GridListDataView.
The Multiselect and the filter working fine, each for it's own. But when I try to Filter the grid, then click the "Select All" Checkbox in the header column all rows in the grid are selected (also those, which are currently not visible, because of the filter.
In fact, it's exactly the issue mentioned here: https://github.com/vaadin/framework/issues/10595 , which should have been fixed by vaadin 8.9.0, but I'm still/again facing this issue.
Question
Is there any known way to work around that and get only those items selected that are currently visible?

Tablesorter disable pager button not working when using ajax

The disable pager functionality is not working as I would expect when using ajax with tablesorter. The pager controls are disabled but the complete set of rows is not retrieved and shown. When not using ajax, it works fine - ie the complete set of rows is shown.
I notice that clicking on the disable pager button triggers the showAllRows function in the jquery.tablesorter.pager file. Then showAllRows calls pagerArrows if ajax is being used. This last function only seems to manipulate the css for the pager controls and does not re-render the table. Is this working properly for others?
Thanks
This does sound like a problem. I would recommend opening an issue so that it can be tracked and addressed.
I am on a sabbatical at the moment, so if the caretakers of the repository are unable to take care of it, I will look into this issue upon my return. Sorry for the delay.

jqgrid 4.4.4 getGridParam("page") not returning proper value

In the jqgrid 4.4.4 $("#myGrid").getGridParam("page"); to get the page number that user entered in the pagination text box.
But it returns the page number that was already present in that pagination text box.
Note: In the jqgrid 3.7.2 (+ jquery 1.4.2) it was working fine(ie returning the user entered value)
Anyone have suggestions and workarounds ?
(Now I am using jquery version 1.9.0 + jqgrid 4.4.4)
The following will give you the value:
$(".ui-pg-input").val();
this issue is occuring to my after upgrade to 4.4.4. The cause of the issue is basically the comit https://github.com/tonytomov/jqGrid/commit/3e4aa0f2fdcb8c2c2a17e842899aca6d1000410a
This commit changes the onpagin to execute BEFORE grid page calculation. In my current project I have reverted this lines so my pagination works again (I use external source binding). I propose to implement onBeforePaging and onAfterPaging, and each users can attach to the event they wants.

CKEditor: Disable default linking of email ids

I am using CKEditor recent version. Whenever a user types his email ID an anchor link is created. Like abcd#example.com is created in the output. How do I disable this property in CKEditor configuration.
I tried config.forcePasteAsPlainText = true; and it didnt help in this particular case.
Auto Url Detection is an IE feature, and as of IE9 you can disable this.
Prior to IE9, it was not possible to specify IDM_AUTOURLDETECT_MODE from JavaScript, meaning that pages could not disable automatic hyperlinking in ContentEditable areas. A new command constant AutoUrlDetect is supported in IE9, allowing script to disable automatic hyperlinking as follows: document.execCommand("AutoUrlDetect", false, false)
You could try executing this call on the editor's document object.
You can also, before CKeditor creates the output (for example the moment the user clicks on the submit button) search for # in input and replace them with #

Postback in report viewer using MVC3

I am using Report Viewer control with the MVC3. When I create a report say Report2.rdlc , and there are 150 records , the pagination of the Report viewer is done. When I click on the page 2 button, a postback function is called , which throws an error as i am using MVC3. Is there any workaround to achieve the records in the page 2 to be displayed.
Or is it possible to display all the records in one page itself? I tried
1) Increasing the height of the Report VIewer and the Report.
2) Setting the ShowPageNavigation to false.
Please Help.
Thankyou in advance.
You have the ReportViewer control inside an MVC view? I have only seen a basic implementation work with hacks/workarounds, often advanced functionality is broken as ReportViewer relies on things from WebForms that aren't available in MVC.
You best approach would be to use an iframe and a WebForm page to get the full functionality or have you tried turning on/off async rendering?

Resources