Completed
Last Updated: 16 Jul 2015 08:41 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: ListView
Type: Bug Report
1

			
Completed
Last Updated: 20 Sep 2016 06:32 by ADMIN
Completed
Last Updated: 12 Dec 2022 16:58 by ADMIN
Release R1 2023

Hello,

I can't tell you how long we've racked our brains trying to figure this issue out. We are using the Bootstrap theme for RadListView and are doing drag and drop. We've been getting a "This is an invalid webresource request. " error when first dragging an item on the page.

I just came across this article which provided me some new guidance:
https://feedback.telerik.com/aspnet-ajax/1586960-windows7-and-vista-skins-generate-application-error-when-using-editor-control

And we decrypted the querystring of the WebResource request and it is looking for this:

pTelerik.Web.UI.Skins|Telerik.Web.UI.Skins.Bootstrap.ListView.drag.gif

When we change our RadListView skin to "Default" or "Black", this drag and drop error is gone so there clearly must be a broken link/reference for that image because we also see the little drag and drop cross overlaying the items we are dragging.

Thank you,

Curtis

Completed
Last Updated: 27 Jun 2023 11:47 by ADMIN
Release R2 2023
Created by: Stas
Comments: 0
Category: ListView
Type: Bug Report
0

Docs: Telerik.Web.UI.RadListViewFilterExpressionLogicBuilder class members

listView.get_filterExpressions()
    .clear()
    .build()
    .greaterThan("UnitPrice", 25)
    .and()
    .lessThan("UnitsInStock", 40)
    .or()
    .group(function (builder) {
        builder.notEqualTo("Discontinued", true)
            .and()
            .startsWith("ProductName", "I");
    });
listView.rebind();