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();
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
While the Progress SASS ThemeBuilder - UI for ASP.NET AJAX is the only official online Web tool for creating custom Skins, some controls are not included.
We would like the ListView included in this process.
When using DataGroups, we can display the DataGroupKey in the DataGroupTemplate. In my case, I wanted to display 3 additional fields in the DataGroupTemplate. I was displaying checks sent to our vendors. Each check had a list of what payments were included in the check (one check may be for several different items that needed paid to the one vendor). I was grouping the data by CheckNumber. In the DataGroupTemplate, I wanted CheckDate, CheckNumber, VendorName, CheckAmount. In the ItemTemplate I had SubmittedDate, SubmittedBy, CostCode, Amount, etc. So my request is to be able to use something like <%# Eval("CheckDate") %> in the DataGroupTemplate.