Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
280
Custom Sorting on WebHierarchical Datagrid
posted

Hi, Is the custom sorting feature for webhierarchicaldatagrid added in version

Version=11.1.20111.1006 now?

 I am binding my webhierarchicaldatagrid to webdatasource which has 3 object datasources like this:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

<ig:webhierarchicaldatasource ID="whdsPartnership"

 

 

 

runat="server"

>

 

 

 

<DataViews

>

 

 

 

<ig:dataview ID="odsPartnership_Source" DataSourceID="odsPartnership"

/>

 

 

 

 

<ig:dataview ID="odsScenario_Source" DataSourceID="odsScenario"

/>

 

 

 

 

<ig:dataview ID="odsTaxYear_Source" DataSourceID="odsTaxYear"

/>

 

 

 

</DataViews

>

 

 

 

<DataRelations

>

 

 

 

<ig:datarelation ChildColumns="InternalPartnershipID" ChildDataViewID

="odsScenario_Source"

 

 

 

ParentColumns="InternalPartnershipID" ParentDataViewID="odsPartnership_Source"

/>

 

 

 

<ig:datarelation ChildColumns="ScenarioID" ChildDataViewID

="odsTaxYear_Source"

 

 

 

ParentColumns="ScenarioID" ParentDataViewID="odsScenario_Source"

/>

 

 

 

</DataRelations

>

 

 

 

</ig:webhierarchicaldatasource

>

out of this I have enabled paging on one of the datasources:

 

 

<asp:ObjectDataSource ID="odsPartnership" runat="server"

 

 

TypeName="EY.PTAS.Facade.PartnershipFacade" SelectMethod="GetPartnershipData" SelectCountMethod="GetPartnershipDataCount"

 

 

OnSelecting="odsPartnership_Selecting" SortParameterName="sortExpression"

 

 

EnablePaging="true" onselected="odsPartnership_Selected" >

 

 

 

</asp:ObjectDataSource>

but the sort expression is always blank.

Please let me know if I have missed out anything here and also about the availibility of the feature.

Thanks & Regards,

Megha Dawagni

Parents Reply Children
No Data