Posted 9/6/2007 11:27:31 AM | | | I have a Grid. Data gets from Data Page, i.e. objGrid.FetchDataPage = "DataPage.aspx"; TheDataPage file looks as follows: string fetch = @"<fetch mapping='logical'><entity name='new_eventresult'><attribute name='new_mark' /><filter type='and'><condition attribute='new_courseworkid' operator='eq' value='" + workId + "' /></filter><link-entity name='contact' from='contactid' to='new_studentid'><attribute name='fullname' /></link-entity></entity></fetch>"; string result = service.Fetch(fetch); AddResultSetToReturn(result, 10008, "new_eventresultid"); If I press "Find" I receive incorrect result, besides fields in a Grid will exchange on "Name" and "Created On". How I can receive correct search among values of a Grid? |
| |
|