Hi I have a hierarchical transformation and in one of the ascx transformations I'd like to conditionally apply a transformation to the current element depending on a property in the parent.Ideally I'd like to do something like ApplyTransformation to the given datarow in the ascx macro.In pseudo code:if(parent.booleanValueIsSet) {
//render transformation 1
} else {
//render transformation2
}
I was wondering how to make the call to render either transformation on the current element.
I can't seem to find anything in the api documentation
↧