hi
The radlistbox is not showing or displaying anything on screen. Why is that so? Thanks
here is my code:
<telerik:RadListBox ID="lbList" runat="server" BorderWidth="0px" BorderStyle="None" Width="100%" style="top: 0px; left: 0px" BorderColor="White"> <ItemTemplate>
<table>
<tr>
<td ><asp:Image ID="Image1" runat="server" ImageUrl="~/crm/profileimage/freelance.png" /></td>
<td>John Wayne</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListBox>
Checkboxes in a batch grid require an extra click to put them into Edit mode, but that's fixed with this code I got on this forum...
function changeEditor(sender) { var grd = GetControlRAD("grdPODetails"); var batchManager = grd.get_batchEditingManager(); batchManager.openCellForEdit(sender.parentElement.parentElement); sender.checked = !sender.checked;}
<telerik:RadGrid ID="grdPODetails" runat="server" AllowSorting="True" AutoGenerateColumns="False" Skin="Office2010Blue" GridLines="None"> <HeaderContextMenu EnableAutoScroll="True"> </HeaderContextMenu> <MasterTableView CommandItemDisplay="Top" EditMode="Batch" InsertItemDisplay="Bottom" ClientDataKeyNames="PurchaseOrderDetailKey" DataKeyNames="PurchaseOrderDetailKey"> <BatchEditingSettings EditType="Cell" OpenEditingEvent="Click" /> <CommandItemSettings ShowRefreshButton="False" ShowSaveChangesButton="true" ShowCancelChangesButton="true" /> <NoRecordsTemplate> No detail lines to display. </NoRecordsTemplate> <Columns> <telerik:GridTemplateColumn DataField="PrintOnPurchaseOrder" HeaderText="Print" UniqueName="PrintOnPurchaseOrder" DataType="System.Boolean"> <HeaderStyle Width="40px" /> <ItemStyle Width="40px" /> <ItemTemplate> <input id="chkPrint" type="checkbox" checked='<%# Eval("PrintOnPurchaseOrder") %>' onclick="changeEditor(this);" /> </ItemTemplate> <EditItemTemplate> <asp:CheckBox ID="chkPrint" runat="server" Checked='<%# Bind("PrintOnPurchaseOrder") %>' /> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="PostToGeneralLedger" HeaderText="Post" UniqueName="PostToGeneralLedger" DataType="System.Boolean"> <HeaderStyle Width="40px" /> <ItemStyle Width="40px" /> <ItemTemplate> <input id="chkPost" type="checkbox" checked='<%# Eval("PostToGeneralLedger") %>' onclick="changeEditor(this);" /> </ItemTemplate> <EditItemTemplate> <asp:CheckBox ID="chkPost" runat="server" Checked='<%# Bind("PostToGeneralLedger") %>' /> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn DataField="UnitDescription" UniqueName="UnitDescription" HeaderText="Unit Desc" DataType="System.String"> <ItemTemplate> <asp:Label ID="lblUnitDescription" runat="server" Text='<%# Eval("UnitDescription") %>'> </asp:Label> </ItemTemplate> <EditItemTemplate> <telerik:RadTextBox ID="txtUnitDescription" runat="server" MaxLength="10" Width="100%" Text='<%# Bind("UnitDescription") %>' > </telerik:RadTextBox> </EditItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> <ClientSettings AllowKeyboardNavigation="true"> <Selecting AllowRowSelect="True" /> <ClientEvents/> </ClientSettings></telerik:RadGrid>
A breakpoint in changeEditor shows it's only called once, to put it in edit mode. But the first time you click it (and every time following if you keep clicking it while still in edit mode) I need to handle that event. For instance, in this grid, if I check the checkbox in the 2nd column, how can I set column "UnitDescription" in the same row to "A", but if I uncheck the checkbox (while still in EditMode) it sets UnitDescription" to "B"?
I tried putting an event handler on the checkbox within EditItemTemplate, but that didn't work... or I did it wrong. It's almost like when it opens in edit mode, a new checkbox is created on the fly. But I can't figure out where it is or how to grab its events. Please help.
Hello,
I have a RadGrid inside a Asp repeater. 0 to 15 grids are built depending on the user preferences through the repeater. I placed a Response.Write([Method Name]) in the events and this is one I obtained for 2 grid containing 5 rows each. The repeater Repeater.DataBind() is called when the user clicks on a button.
Button_Click begin
Repeater_DataBinding begin
Repeater_DataBinding end
RadGrid_NeedDataSource begin
RadGrid_NeedDataSource end
RadGrid_ItemDataBound begin
RadGrid_ItemDataBound end (occured 24 times)
Repeater_ItemDataBound begin
RadGrid_ItemDataBound begin
RadGrid_ItemDataBound end (occured 12 times)
Repeater_ItemDataBound end
RadGrid_NeedDataSource begin
RadGrid_NeedDataSource end (occured 24 times)
Repeater_ItemDataBound begin
RadGrid_ItemDataBound begin
RadGrid_ItemDataBound end (occured 12times)
Repeater_ItemDataBound end
Button_Click end
I am not sure why each grid runs ItemDataBound twice that many times (24 times = (5 rows + header) x 4 and then 12 times = (5 rows + header) x 2).
I would also expect RadGrid_NeedDataSource to be inside the Repeater_ItemDataBound scope.

|

We are upgrading from version 2011.1.519.35 to 2015.3.1111.35 and are having trouble with changes in how the editor behaves with contenteditable=false.
We have functionality that lets users add "mail merge fields" to the content in the editor. When they click a button, we use the editor's pasteHtml() function to add an HTML snippet containing information about the "field." Because we don't want the user to change the information within the field, just add or delete it as a single unit, we use contenteditable=false within its tags.
The problem is that in the 2011 editor, the user could continue typing after we inserted the snippet. But in the 2015 editor, the user's cursor seems to get trapped inside the snippet, and they are unable to continue editing past the snippet.
Is there a way around this? Or, is there a different way we can implement this kind of functionality that works better with the current editor?
Below is a sample ASPX page where you can experience the difference between the versions if you compile it against the 2011.1.519.35 assembly vs 2015.3.1111.35. The way to simulate the issue is to:
When using the 2011 editor, you can keep typing, but in the 2015 editor, you can't.
We're using Internet Explorer. (I'm using version 11, and haven't yet tried other versions.) Our pages have the X-UA-Compatible header set to IE=EmulateIE7, due to having some old code, which changes the editor's behavior a slightly in this example, but even without that header, the fundamental difference between the two versions remains:
<%@ Page Language="C#" AutoEventWireup="true" Inherits="System.Web.UI.Page" %><%@ Import Namespace="System.Diagnostics" %><%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %><!DOCTYPE html><html><head> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"></head><body> <h1><%= FileVersionInfo.GetVersionInfo(RadEditor1.GetType().Assembly.Location).FileVersion %> Telerik</h1> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"/> <telerik:RadEditor ID="RadEditor1" Runat="server" /> </form></body></html>
I've faced two issues on RadGrid while using horizontal scroll bar. Those are,
(i) I've used radgrid and set width 950px my concern is when the grid has no records it doesn't appear scroll bar but the sum of columns widths are greater than grid's width if the grid has records horizontal scroll appears.
(ii) And my another issue is I had details table in that same grid here the number of columns exceeds than grid's column but when the grid and details table has records I can't see rest of the columns I meant about the horizontal scroll bar doesn't appear up to details table column. The horizontal scroll bar shows only up to the main grid's column.
Note: I've set details table width 95%, 96% though its not working
Regards,
Balakrishnan Nagarajan