Just as the title states.
I hvae been able to make clicking of the tab force a post back with this code:
but that only causes a normal post back when I click on the actual tab.
I have a regular asp.net button that I want to have that force a post back (it's also inside the RadTabStrip and RadMultiPage AJAX container.
Please let me know if there is a way I can have the regular button itself force the postback and cause the upload to happen. I've tried several methods including the forcepostback javascript etc, but none of it works.
Thanks
I hvae been able to make clicking of the tab force a post back with this code:
| <script type="text/javascript"> |
| Sys.Application.add_load(function() |
| { |
| currentlySelectedTab = $find("<%= RecipientTabs.ClientID %>").get_selectedTab(); |
| }); |
| function onClientTabSelecting(sender, args) |
| { |
| var currentlySelectedTab = args.get_tab().get_tabStrip().get_selectedTab(); |
| if (currentlySelectedTab.get_index() == 1) |
| { |
| $find("<%= AjaxPanel1.ClientID %>").set_enableAJAX(false); |
| } |
| } |
| </script> |
but that only causes a normal post back when I click on the actual tab.
I have a regular asp.net button that I want to have that force a post back (it's also inside the RadTabStrip and RadMultiPage AJAX container.
Please let me know if there is a way I can have the regular button itself force the postback and cause the upload to happen. I've tried several methods including the forcepostback javascript etc, but none of it works.
Thanks