Is there a way to disable the action for a textbox on a databound event? I'm using an action on a table item to navigation to a drilldown report. There is no child report, it just opens the same report and navigates to the next node in my hierarchy tree so to speak. I'm simply passing a value to the same report to indicate who the drilldown parent is. Everything works fine until I get to the point where there are no more children and I don't want the action to do anything at this point otherwise it will take me to a report with no results.
I've been able to work around my problem by creating two versions of the textbox that contains my action. One with the action and one without the action. The one textox is superimposed on the other. I then simply hide or show the appropriate textbox on a databound event. Unfortunately, I've run into a problem with this approach and the table object. A table column can contain only one textbox, so I can't have two different versions of the textbox in a single column. I can't use two columns, hide one and show the other since some rows may have child reports and some may not.
I've been able to work around my problem by creating two versions of the textbox that contains my action. One with the action and one without the action. The one textox is superimposed on the other. I then simply hide or show the appropriate textbox on a databound event. Unfortunately, I've run into a problem with this approach and the table object. A table column can contain only one textbox, so I can't have two different versions of the textbox in a single column. I can't use two columns, hide one and show the other since some rows may have child reports and some may not.