Hello,
I have added sub grid in an entity. When i use below code
var gridControl = document.getElementById('Project').control;
var ids = gridControl.get_allRecordIds();
for(i = 0; i < ids.length; i++) {
var cellValue = gridControl.getCellValue('new_consultantname01', ids[i]);
}
I'm getting id's which is not matching with guid of record in subgrid. When i searched about this i came to know that whatever subgrid shows is view so the id we get is of the view not of record's. How to get the guid of record in subgrid. I want guid to retrieve
annotation of that record. When i add record to subgrid , then automatically , the annotation associated with record will be inserted in the entity in which subgrid is being displayed. My actual task is to retrieve the annotation of record selected in subgrid.
How to do this
Madhu Sudhan.M