Hi,
I am using the current MVC5 jQuery version. I do indeed apply the [DontWrapResult] attribute to my action methods to get this working. Kendo automatically calls the ajax methods required and I am therefore unable to use abp.ajax . However, I would really like to maintain consistency in the way I handle ajax errors.
The code below shows how I use Kendo to set up a datasource. Where I have the TODO comment, I would like to be able to invoke the standard abp ajax error dialog:
function buildDataSource() {
return new kendo.data.DataSource({
type: "aspnetmvc-ajax",
transport: {
read: {
url: "/Users/GetUsers",
data: {
filterText: $('#UsersTableFilter').val()
}
}
},
schema: {
data: 'data',
total: 'total',
errors: 'error'
},
error: function (e) {
//TODO
//alert(e.errors.message);
},
pageSize: 10,
serverPaging: true,
serverSorting: true
});
}
Yes, I am now seeing this.
Thank you.
Yes, the problem turned out to be the StartUp Project selection.
Thank you.
Okay, thank you.
Hi,
I can do this. What I don't understand though, is that all the screen shots I see in the Development Guide (e.g. User Management section) have the single dropdown button. Is this a mistake in the documentation?
Regards