or

//Javascript
//If this is done, the text editor dialog won't show. Not sure why.Telerik.Web.UI.ImageEditor.CommandList.AddText = function (imageEditor, commandName, args) { var commandText = "AddText"; var commandArgument = customClientSideDataHere; imageEditor.editImageOnServer(commandName, commandText, commandArgument, callbackFunction);};protected void RadImageEditor1_ImageEditing(object sender, ImageEditorEditingEventArgs args){ string text = args.Argument;}
<telerik:RadFilter runat="server" FilterContainerID="locationTreeList" ID="ctl00" CssClass="RadFilter RadFilter_Default " Skin="Transparent"> <FieldEditors> <telerik:RadFilterTextFieldEditor TextBoxWidth="120" FieldName="LocationName" /> </FieldEditors></telerik:RadFilter><telerik:RadTreeList ID="locationTreeList" runat="server" AllowPaging="false" AutoGenerateColumns="false" DataSourceID="locationDS" AllowSorting="True" DataKeyNames="LocationID" ParentDataKeyNames="ParentID"> <Columns> <telerik:TreeListBoundColumn DataField="LocationID" HeaderText="Location ID" /> <telerik:TreeListBoundColumn DataField="LocationName" HeaderText="Name" /> <telerik:TreeListBoundColumn DataField="ShortCode" HeaderText="Short Code" /> <telerik:TreeListCheckBoxColumn DataField="IsTest" HeaderText="Test Location" /> <telerik:TreeListBoundColumn DataField="AddressID" HeaderText="Address ID" /> </Columns></telerik:RadTreeList><telerik:OpenAccessDataSource ID="locationDS" runat="server" EnableDelete="False" ObjectContextProvider="AuthDB.Model.Context, AuthDB" OrderBy="LocationName, ParentLocation.LocationName" TypeName="AuthDB.Model.CommonLocation" />