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

RadListBox and ItemCreated

1 Answer 75 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Robert
Top achievements
Rank 1
Robert asked on 09 Sep 2011, 11:53 PM
I'm trying to implement the ItemCreated event handler in my server-side code.  What parameters do I use in the event handler?

Can you also please provide the link to your documentation that shows this?  I don't think it exists.

Robert W.

1 Answer, 1 is accepted

Sort by
0
Dimitar Terziev
Telerik team
answered on 12 Sep 2011, 02:46 PM
Hi Robert,

The event handler function for the ItemCreated event should have the following input parameters:
protected void RadListBox1_ItemCreated(object sender, Telerik.Web.UI.RadListBoxItemEventArgs e)
    {
//custom code here
    }
 
In case you are a VB developer you should use the following one:
Protected Sub RadListBox1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxItemEventArgs) Handles RadListBox1.ItemCreated
//custom code here
    End Sub

Thank you for pointing that this event hasn't been documented. This flaw in our documentation will be fixed asap. As a token of gratitude your Telerik points have been updated.

All the best,
Dimitar Terziev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
ListBox
Asked by
Robert
Top achievements
Rank 1
Answers by
Dimitar Terziev
Telerik team
Share this question
or