Hi,
I'm using extensibility framework to read from my database for which I have created a grid as follows:
response = EAM.Ajax.request({
url: 'GRIDDATA',
params: {
GRID_NAME: 'PUDATE',
REQUEST_TYPE: 'LIST.HEAD_DATA.STORED',
LOV_ALIAS_NAME_1: 'wonumber',
LOV_ALIAS_VALUE_1: wo_number_js,
LOV_ALIAS_TYPE_1: 'text'
},
async: false,
method: 'POST'
});
var gridresult = response.responseData.pageData.grid.GRIDRESULT.GRID;
var griddata = gridresult.DATA;
//console.log(griddata);
This way I'm able to get data from a database. I want to know if there is a way to write to a database using extensibility framework? Like if some button on the extensibility framework msgbox (pop up message) is clicked, then this information is saved in the database.
Thanks!