-
16 Jul 2012 10:55 AM #1
Unanswered: how to add a row from grid for emailing?
Unanswered: how to add a row from grid for emailing?
How can I email a row information , when the user slects a checkbox from a grid and want to email the row information when the user clicks on the emai button on the bottom
-
16 Jul 2012 11:30 AM #2
You can get the JSON representation of an entire grid row like this:
You can then use an Ext.Ajax.request() to pass the JSON to the server-side.Code:var record = someGrid.getStore().getAt(<n>); var json = Ext.encode(record.data);


Reply With Quote