This is a migrated thread and some comments may be shown as answers.

Panel Bar On Expand

1 Answer 47 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Jerry
Top achievements
Rank 1
Jerry asked on 17 Dec 2010, 08:30 PM
IT appears that the Panel Bar  On Expand is NOT firing after the panel has been expanded? Anyone else experience this? Any work around?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 23 Dec 2010, 11:13 AM
Hi Jerry,

I guess your issue is that, the RadPanelBar client side "OnClientItemExpand" event is not firing as expected. If so, could you paste the code that you tried, since I am not sure about how you attached the event to RadPanelBar?


Also check the following code and see whether you missed anything in your code:
        <telerik:RadPanelBar runat="server" OnClientItemExpand="OnClientItemExpand" ID="SupportPanelBar"
            Width="150" >
            <Items>
                .  .  .
            </Items>
        </telerik:RadPanelBar>
    </div>
    </form>
</body>
</html>
 
<script type="text/javascript">
    function OnClientItemExpand(sender, args) {
        alert("Fired OnClientItemExpand");
    }
</script>




-Shinu.
Tags
PanelBar
Asked by
Jerry
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or