or
<telerik:RadImageEditor ID="CurrentPageImage" runat="server" Height="100%" Width="100%" OnImageEditing="CurrentPageImage_ImageEditing">
<Tools>
<telerik:ImageEditorToolGroup>
<telerik:ImageEditorTool CommandName="Rotate" ToolTip="Rotate Image" IsToggleButton="true">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="RotateRight" ToolTip="Rotate Right by 90 degrees">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="RotateLeft" ToolTip="Rotate Left by 90 degrees">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="Flip" ToolTip="Flip Image" IsToggleButton="true">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="FlipVertical" ToolTip="Flip Image Vertically">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="FlipHorizontal" ToolTip="Flip Image Horizontally">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="Zoom" ToolTip="Zoom Image" IsToggleButton="true">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="ZoomIn" ToolTip="Zoom In">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="ZoomOut" ToolTip="Zoom Out">
</telerik:ImageEditorTool>
<telerik:ImageEditorTool CommandName="CustomPrint" ToolTip="Print" ImageUrl="~/Images/PDFViewer/pdf-view-12-print.png" >
</telerik:ImageEditorTool>
</telerik:ImageEditorToolGroup>
</Tools>
</telerik:RadImageEditor>
<script type="text/javascript"> Telerik.Web.UI.ImageEditor.CommandList.CustomPrint = function (imageEditor, commandName, args) { var commandText = "CustomPrint"; var commandArgument = "Additional Argument Sent to the Server"; imageEditor.editImageOnServer(commandName, commandText, commandArgument, callbackFunction) } function callbackFunction(clientData, serveData) { } </script>
<telerik:RadAjaxManagerProxy runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="Grid"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="Grid" LoadingPanelID="LoadingPanel" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy><telerik:RadGrid ID="uxOrderListControl" runat="server" OnNeedDataSource="uxOrderListControl_NeedDataSource" OnItemCreated="uxOrderListControl_ItemCreated" OnColumnCreated="uxOrderListControl_ColumnCreated" Width="100%" OnItemDataBound="uxOrderListControl_ItemDataBound" AutoGenerateColumns="False" ClientSettings-Selecting-AllowRowSelect="true" AllowMultiRowSelection="true" ParentDataKeyNames="ReferralInvoiceId" DataKeyNames="OrderId" EnableLinqExpressions="false" MasterTableView-HierarchyDefaultExpanded="true" MasterTableView-HierarchyLoadMode="ServerBind"> <MasterTableView AllowSorting="true" DataKeyNames="OrderId, ReferralInvoiceId"> <SelfHierarchySettings ParentKeyName="ReferralInvoiceId" KeyName="OrderId" /> </MasterTableView> <ClientSettings AllowExpandCollapse="true"> <Selecting AllowRowSelect="True"></Selecting> <ClientEvents OnDataBound="uxOrderListControl_OnDataBound" /> </ClientSettings></telerik:RadGrid>... code to fill parameters and call a search methoduxOrderListControl.DataSource = orderList;uxOrderListControl.DataBind();<telerik:GridTemplateColumn DataField ="ID" UniqueName="CheckBoxColumn"> <ItemTemplate> <asp:CheckBox ID="CheckBoxStatus" runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn>
<telerik:RadCaptcha ID="RadCaptcha1" runat="server" ErrorMessage="Enter code below" EnableRefreshImage="true" RegisterWithScriptManager="true"
ValidationGroup="Group" CaptchaTextBoxLabel="" Font-Size="8pt">
</telerik:RadCaptcha>
Thanks for responding.
How do I attaqch the source code - seems like this form will only accept image files? 1. I have what amounts to a simple demo online 'excel spreadsheet' 2. table with fixed 7 cols, 7 rows 3. 2 cols are editable, and as a result of editing them, a calculation is performed on 2 other colums I've set up the 'updater' fields and the 'updatEE' fields propertly I believe. 1. It's not even firing for one of the colums. 2. For the column that's firing, it's firing MULTIPLE RANDOM events, including it's own, and including for the colun that won't fire. 3. If I've set up my 'updater' and 'updatee' controls correctly, then why is the ENTIRE table flashing each TextChange? This is a very very simple application. I'm intersted in what I"m doing wrong because I think I've Followed all the fules. I don't want to post all the code, would rather include a zip - but how do I do that? It seems to only accept images?