I have an UltraWebTab control with several Tabs with Content TargetURLs to functional pages, most of which have grids on them. Anyway, I have a need to set focus on a specific tab during page load or post-back. I need to do this server-side in the code-behind. I'm not seeing how to do this. Can someone give me a quick example, please? Thanks!
Hello dbishop9 ,
There is a SelectedTab property for the UltraWebTab. You can set that to the index of the tab you want to set as selected. For example:
this.UltraWebTab1.SelectedTab = 1;
Let me know if you have any questions or concerns regarding this.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
Thanks Maya, I thought it had this property, but for some reason, it wouldn't initially show up in intellisense, so I thought there must be another way.