문제

I'm extending GridViewDataColumn and I want to implement some custom sorting for it. So I need to add SortDesccriptor to the parent RadGridView of my GridViewDataColumn. There's not much documentation and the sources are not available. How can I get the column's parent GridView so that I can add SortDescriptors to it?

I'm using RadControls for Silverlight.

도움이 되었습니까?

해결책

So, you have an instance of a GridViewDataColumn and you want to get the parent RadGridView? Does the following not work?

public RadGridView GetGridView() 
{
    return this.DataControl as RadGridView;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top