Hi, just hoping for some input regarding a thing i'm about to start with.
-I have a "users" datasource, that i use in listgrids for Showing, Create, update, delete operations. Works fine.
-I now have a case where i want to show all users in a similar listgrid, but have the ability to select them with a checkbox and when a button is pressed, send the ID's of the selected records to a spring service method i have on the server.
I can think of several ways - code a custom RPC server method that i call from my button clicklistener, or a custom "update" method somehow, setting the operationid when the button is clicked, then call savedata.
I really only want the id's to be sent to the server, preferrably in one single server call. What would you say is the best approach?
Would be great with some thoughts.
-I have a "users" datasource, that i use in listgrids for Showing, Create, update, delete operations. Works fine.
-I now have a case where i want to show all users in a similar listgrid, but have the ability to select them with a checkbox and when a button is pressed, send the ID's of the selected records to a spring service method i have on the server.
I can think of several ways - code a custom RPC server method that i call from my button clicklistener, or a custom "update" method somehow, setting the operationid when the button is clicked, then call savedata.
I really only want the id's to be sent to the server, preferrably in one single server call. What would you say is the best approach?
Would be great with some thoughts.
Comment