This question is locked. New answers and comments are not allowed.
Hi,
If you bind your grid (Ajax client side) is it possible to give the user a notification after a certain action(eg delete)?
We use javasxript to notify a user (Growl).
So I do a bind in the end of my controller class to the grid, And it gets the updated data from server and shows it.
But how do i notify the user that it is sucessful? Using my standard message bus.
Here is a piece of my controller:
We use this version from Telerik --> 2010 -3-1110 .....
Regards,
Gerard Eikelboom
If you bind your grid (Ajax client side) is it possible to give the user a notification after a certain action(eg delete)?
We use javasxript to notify a user (Growl).
So I do a bind in the end of my controller class to the grid, And it gets the updated data from server and shows it.
But how do i notify the user that it is sucessful? Using my standard message bus.
Here is a piece of my controller:
if (UserDefaultWebshop == UserWebshopID.UserWebShop_ID) { //do nothing let user know it's not possible. } else { //delete user webshop UserModel um = new UserModel(); um.DeleteUserWebshop(User_Id, UserWebshopID.UserWebShop_ID); } // rebind to grid with new updated data myViewModel = rvm.GetUserWebshops(User_Id); return View(new GridModel(myViewModel)); }Regards,
Gerard Eikelboom