Example:
/**
* Helper to requery the view.
*/
public void requery() {
Row currentRow = getCurrentRow();
Key currentRowKey = currentRow.getKey();
int rangePosOfCurrentRow = getRangeIndexOf(currentRow);
int rangeStartBeforeQuery = getRangeStart();
executeQuery();
setRangeStart(rangeStartBeforeQuery);
findAndSetCurrentRowByKey(currentRowKey,rangePosOfCurrentRow);
}
Context
View Object Implementation Class
Application Module Implementation Class
References
http://radio-weblogs.com/0118231/2004/11/22.html
Thank you it's works fine
ReplyDeleteWhen you select row within the range paging its working fine. when you scroll row and select row it's doesn't work.
ReplyDeleteCan you share sample project/code.