or
<telerik:RadGrid ID="RadGridSingleClick" runat="server" Skin="Vista" AutoGenerateColumns="true" OnNeedDataSource="RadGridSingleClick_NeedDataSource" OnPreRender="RadGridSingleClick_PreRender" OnUpdateCommand="RadGridSingleClick_UpdateCommand" OnColumnCreated="RadGridSingleClick_ColumnCreated" Height="250px" Width="1100px"> <%--OnItemDataBound="RadGridText_ItemDataBound" --%> <MasterTableView HeaderStyle-CssClass="disable-highlight" Width="95%" HeaderStyle-HorizontalAlign="Center" HeaderStyle-Wrap="true" DataKeyNames="MKTID" HeaderStyle-Width="100px" ItemStyle-Width="100px" EditMode="InPlace"> <Columns> <telerik:GridEditCommandColumn ButtonType="ImageButton" ItemStyle-Width="60px" HeaderStyle-Width="60px"> </telerik:GridEditCommandColumn> </Columns> </MasterTableView> <ClientSettings Scrolling-AllowScroll="true" Resizing-AllowColumnResize="true" Scrolling-SaveScrollPosition="true" Scrolling-FrozenColumnsCount="2" Scrolling-UseStaticHeaders="true"> <Selecting AllowRowSelect="true" /> <ClientEvents OnRowClick="RadGridSingleRowClick" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> </ClientSettings> </telerik:RadGrid> <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.