My solution is:
Code:
public ListGridRecord FindListGridRecord(ListGrid oGrid, String sFieldName, String sFieldValue) {
Record oRecord = oGrid.getResultSet().find(sFieldName, sFieldValue); //***LEARN: How to find a ListGridRecord by primary id as per technique at http://forums.smartclient.com/showthread.php?t=16988&page=2
ListGridRecord oRec = new ListGridRecord(oRecord.getJsObj());
return oRec;
}
Jean-Pierre
Leave a comment: