Hi,
i use dhtmlxgrid v.1.6. I have a contextmenu with menuItem “addNotes”. So user can insert his commentar hier. I use following codes:
contextmenu
Add Your Notes:
and my javascript codes:
function onButtonClick(menuitemId,gridItemId){
…
if(menuitemId == “AddNotes”){
var w2 = dhxWins.createWindow(“w2”,0,0,200,200);
w2.setText(“addNotes”);
w2.attachURL("/ajax/xml_feed.jsp?action=get_addNotes"); //The html codes are dynamic produced
w2.center();
}
…
}
My Question is, how can i access user commentar in textarea and should i use dhtmlxDataprocessor or dhtmlxAjax for send the data to server.
Thanks in advance!
pyt