hi,
I have a problem with binding data to a radgrid from client side!!!!
I have a WCFServiceLibrary where my service class and it's interface are in. In this service class I have defined the getAllPlaceDefinitions() method as follows :
In a WCFWebsite ,called http://localhost:11, I have defined my svc file(In folder BasicSetting). This file is called "PlacesDefinitionManager.svc".
In my ASP.Net website I used the radgrid, mastertable and I defined my columns in it.
Client Setting code is as follows :
<ClientSettings>
<DataBinding SelectMethod="getAllPlaceDefinitions" Location="http://localhost:11/BasicSetting/PlacesDefinitionManager.svc"
EnableCaching="false">
</DataBinding>
</ClientSettings>
When I browse this page the grid brings some empty rows.:( I think it doesn't find the svc file or cannot use it.
Would you please help me with my problem?!?!
I have a problem with binding data to a radgrid from client side!!!!
I have a WCFServiceLibrary where my service class and it's interface are in. In this service class I have defined the getAllPlaceDefinitions() method as follows :
public List<AccPlc> getAllPlaceDefinitions(int startIndex, int maxRowCount, int someParameter)
{
List<AccPlc> list = (from plc in Generals.DbList.AccPlcs
select plc).ToList();
return list;
}
In a WCFWebsite ,called http://localhost:11, I have defined my svc file(In folder BasicSetting). This file is called "PlacesDefinitionManager.svc".
In my ASP.Net website I used the radgrid, mastertable and I defined my columns in it.
Client Setting code is as follows :
<ClientSettings>
<DataBinding SelectMethod="getAllPlaceDefinitions" Location="http://localhost:11/BasicSetting/PlacesDefinitionManager.svc"
EnableCaching="false">
</DataBinding>
</ClientSettings>
When I browse this page the grid brings some empty rows.:( I think it doesn't find the svc file or cannot use it.
Would you please help me with my problem?!?!