This question is locked. New answers and comments are not allowed.
hello Telerik,
Please help me with this:
I have a collection of objects like this:
There are different combionations of ValueReadPermission and Value2ReadPermission ... (more columns).
I need to show the Value property in a grid column but only in case the ReadPermission == True. If there is a lack of permission, I would like to show some icon in the column. I don't know how to implement binding to different dataTemplates. (If this is the correct approach).
I also don't know, how to implement sorting, filtering, grouping in a such way the user would not be able to guess the Value using for example grouping by the column Value.
Thank you very much.
Tom
Please help me with this:
I have a collection of objects like this:
public class MyBusinessClass { public string ErrorMsg { get; set; } public int Value { get; set; } public bool ValueReadPermission { get; set; }
public int Value2 { get; set; }
public bool Value2ReadPermission { get; set; }
}
There are different combionations of ValueReadPermission and Value2ReadPermission ... (more columns).
I need to show the Value property in a grid column but only in case the ReadPermission == True. If there is a lack of permission, I would like to show some icon in the column. I don't know how to implement binding to different dataTemplates. (If this is the correct approach).
I also don't know, how to implement sorting, filtering, grouping in a such way the user would not be able to guess the Value using for example grouping by the column Value.
Thank you very much.
Tom