telerik:RadListView ID="rlvContentDisplay" runat="server"
AllowPaging="True"
AllowSorting="True"
BorderStyle="None"
GridLines="None"
DataKeyNames="PropertyID"
ItemPlaceholderID="DashboardPlaceHolder"
OnItemDataBound="rlvContent_ItemDataBound"
OnNeedDataSource="rlvContent_NeedDataSource"
ItemCommand = "rlvContent_ItemCommand"
Width="100%">
<LayoutTemplate>
<div id="assetIndex">
<div class="expand"></div>
<div id="DashboardPlaceHolder" runat="server"></div>
<telerik:RadDataPager ID="rdpContent" CssClass="dashboardPaginate" runat="server"PagedControlID="rlvContentDisplay" PageSize="15" BorderStyle="None" Width="700"EnableEmbeddedSkins="false" Skin="RadSkin">
<Fields>
<telerik:RadDataPagerPageSizeField PageSizeText="Results per page" />
<telerik:RadDataPagerGoToPageField CurrentPageText="Page:"TotalPageText="of" SubmitButtonText="" TextBoxWidth="25" />
<telerik:RadDataPagerButtonField FieldType="NextLast" />
<telerik:RadDataPagerButtonField FieldType="Numeric" />
<telerik:RadDataPagerButtonField FieldType="FirstPrev" />
</Fields>
</telerik:RadDataPager>
</div>
</LayoutTemplate>
<ItemTemplate>
<div id="contentHold_<%# Convert.ToString(DataBinder.Eval(Container.DataItem, "id"))%>" class="asset max">
<div>
<div class="summary imageContainer toggleDetail" alt="toggle"onclick="toggleDetail(this, <%# Convert.ToString(DataBinder.Eval(Container.DataItem, "id"))%>)"></div>
<div class="summary lineContainer">
<div id="galleryImageBox" class="galleryImageBox"runat="server">
<asp:HyperLink ID="headlineLink" runat="server"><asp:ImageID="storyThumb" runat="server" CssClass="storyThumb" /></asp:HyperLink>
</div>
<div class="galleryInfoContainer">
<asp:Literal ID="litHeadlineLink" runat="server"></asp:Literal>
<div id="abstract_<%#Convert.ToString(DataBinder.Eval(Container.DataItem, "id"))%>" class="detail itemAbstract">
<asp:Literal runat="server" ID="litAbstract" />
</div>
<div class="byline">By <asp:Literal runat="server"ID="litAuthorInfo" /></div>
</div>
</div>
<div class="summary sectionContainer"><asp:Literal runat="server"ID="litSectionInfo" /></div>
<div class="summary metaContainer">
<div class="datetime"><asp:Literal runat="server"ID="litDateStamp" /></div>
<span class="fontRed"><asp:Literal runat="server" ID="litMinsAgo"/></span>
<div class="user"><asp:Literal runat="server" ID="litLastUser"/></div>
<div class="status redText"><asp:Literal ID="litStatus"runat="server" Visible="true" /></div>
</div>
</div>
</div>
<div class="asset hrule"></div>
<div id="asset_<%# Convert.ToString(DataBinder.Eval(Container.DataItem, "id"))%>" class="detail">
<div style="background-color:#f1f1f1; padding:10px">
<asp:Literal ID="litAssetsSlider" runat="server" />
<div id="emptyAsset" class="emptyAsset" runat="server"visible="false">
<div class="largeMessage">You have no assets.</div>
<telerik:RadButton ID="btnAddAlbum" runat="server"AutoPostBack="False" BackColor="transparent" ButtonType="LinkButton"UseSubmitBehavior="False"
Text="Add Asset" Title="Add an asset for this Story" EnableEmbeddedSkins="false"
Skin="RadSkin" />
</div>
</div>
</div>
</ItemTemplate>
</telerik:RadListView>

Hello,
I have a problem with RadEditor Image Manager, the problem is that the preview is not working right, I don't know what is missing me to configure, as you can see in the image that I attach you, it appears a red X instead of the image, when I insert the image it seems the same, only the red X, so I'm not able to insert the image... So when I open the image in the editor, I don't have problem I can see the image.
I have been many days trying to solve this, I hope you can help me, even I hope I can explain you the problem.
Thanks in advance.


protected void AddDetailsTable() { GridTableView gvCylinderList = new GridTableView(gridMapModel); gvCylinderList.Name = "gvCylinderList"; gvCylinderList.AutoGenerateColumns = false; gridMapModel.MasterTableView.DetailTables.Add(gvCylinderList); GridBoundColumn clName = new GridBoundColumn(); clName.DataField = "Name"; clName.HeaderText = "Name"; gvCylinderList.Columns.Add(clName); gridMapModel.DetailTableDataBind+=new GridDetailTableDataBindEventHandler(gridMapModel_DetailTableDataBind); }protected void gridMapModel_DetailTableDataBind(object sender, GridDetailTableDataBindEventArgs e) { GridDataItem item = (GridDataItem)e.DetailTableView.ParentItem; switch (e.DetailTableView.Name) { case "gvCylinderList": int mapModelId = Convert.ToInt32(item.GetDataKeyValue("MapModelId")); VesselService vs = new VesselService(); List<MapModelCylinder> lst = GetMapModelCylinderList(vs.GetMapModelsCylinder(mapModelId)); if (lst.Count > 0) { e.DetailTableView.DataSource = lst; } break; } }$("input[name='cboSelection']").keydown(function (event) { event.preventDefault(); return false; });});// Attach the event handlers to the client side events of the TextBoxes. foreach (GridDataItem item in RadGrid1.MasterTableView.Items) { if (item is GridDataItem) { columnsCount = 0; for (int i = 2; i < RadGrid1.MasterTableView.RenderColumns.Length; i++) { GridColumn column = RadGrid1.MasterTableView.RenderColumns[i]; TextBox textBox = (item[column.UniqueName].Controls[0]) as TextBox; if (textBox != null) { textBox.Attributes.Add("ondblclick", "cellDoubleClickFunction('" + textBox.ClientID + "');"); textBox.Attributes.Add("onclick", "cellClick('" + textBox.ClientID + "');"); } if (i == 2) { textBox.ReadOnly = true; textBox.Attributes.Add("class", "readOnly"); } columnsCount++;<telerik:RadButton ID="uxCancelButton" runat="server" CausesValidation="False" UseSubmitBehavior="false" Text="Cancel" OnClientClicked="CloseAdhocPopup" AutoPostBack="False" ><Icon PrimaryIconCssClass="rbCancel" PrimaryIconLeft="6px"></Icon></telerik:RadButton>