| <telerik:RadCodeBlock ID="radCodeBlock" runat="server"> |
| <script type="text/javascript"> |
| function GetRadWindow() |
| { |
| var oWindow = null; |
| if (window.radWindow) oWindow = window.radWindow; |
| else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; |
| return oWindow; |
| } |
| function returnToParent() |
| { |
| //create the argument that will be returned to the parent page |
| var oArg = new Object(); |
| //get the selected id from RadGrid |
| var grid = $find("<%=radGrid.ClientID %>"); |
| var MasterTable = grid.get_masterTableView(); |
| var selectedRows = MasterTable.get_selectedItems(); |
| for (var i = 0; i < selectedRows.length; i++) |
| { |
| alert(i); // got 0 for 1 selectec row |
| var row = selectedRows[i]; |
| var cell = MasterTable.getCellByColumnUniqueName(row, "id") |
| } |
| var id = cell.innerHtml(); |
| //var id = $find("<%=radGrid.ClientID %>").get_masterTableView().get_selectedItems()[0].getDataKeyValue("id"); |
| //get a reference to the current RadWindow |
| var oWnd = GetRadWindow(); |
| //Close the RadWindow and send the argument to the parent page |
| if(id) |
| { |
| //oWnd.close(oArg); |
| alert("docid = " + id); |
| } |
| else |
| { |
| alert("Please select a document."); |
| } |
| } |
| </script> |
| </telerik:RadCodeBlock> |
| <telerik:RadGrid ID="radGrid" runat="server" |
| AllowPaging="True" |
| PageSize="20" |
| AutoGenerateColumns="False" |
| GridLines="Both" |
| AllowMultiRowSelection = "false" |
| ClientSettings-Selecting-AllowRowSelect = "true" |
| OnNeedDataSource="Radgrid_NeedDatasource"> |
| <MasterTableView DataKeyNames="id" |
| CommandItemDisplay="Top"> |
| <CommandItemTemplate> |
| <div style="padding: 5px 5px;"> |
| <img onclick="returnToParent()" style="border:0px;vertical-align:middle;" alt="" src="../App_Themes/Default/Images/file_icon.gif"/> |
| <asp:Label ID="lblChooseDocument" runat="server" Text="choosedocument" OnLoad="OnLabelLoad"></asp:Label> |
| </div> |
| </CommandItemTemplate> |
| <Columns> |
| <telerik:GridBoundColumn DataField="id" Visible="false"></telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn> |
| <ItemTemplate> |
| <asp:Image runat="server" ID="imgNew" |
| OnLoad="OnImageLoad" /> |
| <asp:TextBox ID="txbCreatedDate" runat="server" |
| Visible ="false" |
| Text='<%# DataBinder.Eval(Container.DataItem,"created_date").ToString() %>' /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridHyperLinkColumn DataTextField="Metainformation.name" HeaderText="Profile" DataTextFormatString="{0}"></telerik:GridHyperLinkColumn> |
| <telerik:GridBoundColumn DataField="Category.name" HeaderText="Kategorie"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="User.lastname" HeaderText="Ersteller"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="created_date" HeaderText="Erstellungsdatum"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="User1.lastname" HeaderText="letzter Bearbeiter"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="checkout_date" DataType="System.DateTime" HeaderText="in Verwendung seit"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Folder.name" HeaderText="Ordner"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="id" UniqueName="id" Visible="false"></telerik:GridBoundColumn> |
| </Columns> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| </MasterTableView> |
| </telerik:RadGrid> |
Hello All,
I am trying to give titles to Telerik Tile list --> Tilegroup using the sample code provided on this page
http://demos.telerik.com/aspnet-ajax/tilelist/examples/data-binding/server-side-binding/declarative-data-source/defaultcs.aspx.
But when I run the code I get the following error:
Type 'Telerik.Web.UI.TileGroup' does not have a public property named 'Title'.
here is my code:
<telerik:RadTileList RenderMode="Lightweight" runat="server" DataSourceID="SqlDataSource1" ID="RadTileList1" AppendDataBoundItems="True"
TileRows="4" OnTileDataBound="RadTileList1_OnTileDataBound" OnTileCreated="RadTileList1_OnTileCreated">
<DataBindings>
<CommonTileBinding TileType="RadImageAndTextTile" Shape="Square" DataGroupNameField="Division" />
<ImageAndTextTileBinding DataTextField="Employee" DataImageUrlField="BLOB" />
<TilePeekTemplate>
<div class="peekTemplateClass">
<strong>Location</strong>
<%#DataBinder.Eval(Container.DataItem, "Location")%>
<br />
<strong>Division</strong>
<%#DataBinder.Eval(Container.DataItem, "Division")%>
<br />
<strong>Email</strong>
<%#DataBinder.Eval(Container.DataItem, "EmailID")%>
<br />
<strong>Name</strong>
<%#DataBinder.Eval(Container.DataItem, "Employee")%>
</div>
</TilePeekTemplate>
</DataBindings>
<Groups>
<telerik:TileGroup Name="Health Services" Title=""> ---> I m getting error here while trying to add title as per the telerik demo.
</telerik:TileGroup>
<telerik:TileGroup Name="Home Health">
</telerik:TileGroup>
<telerik:TileGroup Name="Hospice">
</telerik:TileGroup>
<telerik:TileGroup Name="DME">
</telerik:TileGroup>
</Groups>
</telerik:RadTileList>
Can any one please suggest me why this is happening?
Hello,
Could you please check the following behavior and suggest how to fix it?
Scenario:
Expected behavior:
EM space is converted to  
Actual behavior:
EM space is removed
Please take a look at the reproducing scenario on the demo page: http://screencast.com/t/o8JwCGrj
Hello,
I am currently using version 2016.1.225.35 and I'm having issues with the server side AcceptTrackChanges() method. When the method is used it seems that formatting changes that have been made to the content (i.e., Bold) are not accepted. Other changes, like insert and delete, are accepted. I believe this use to work properly in the 2015 version. If we enable the command using the editor toolbar button (<telerik:EditorTool Name="AcceptAllTrackChanges" />), all changes are accepted (including the formatting changes).
To reproduce this problem, include the editor in the page markup. Also, add a Button with the associated OnClick event. Within the code behind OnClick event, utilize the AcceptTrackChanges method to accept changes. Example is shown:
protected void ButtonAcceptChanges_Click(object sender, EventArgs e){ RadEditorDesc.AcceptTrackChanges(); }
Make changes within the editor content. Include formatting changes (i.e., bold) and then click on the Accept Changes button. You should notice that all changes are accepted other than formatting type changes.
Any help in resolving this issue would be appreciated.
Thank-you.
Hi Friends,
I have a requiremt to populate two Treeviews , such that the second Treeview is populated based on clicking on the first . Am using XMLDatasource to populate both . For the first time, the second Treeview is perfectly loaded, but after that it is still showing the same data ,i.e; not refreshing .
How can i make the treeview to get the changes reflected correctly .
Thanks in advance
Regards
Sree
I noticed that on one of the asp.net webform demos you had a option to tick and show the apointments of users in one schedulre kinda like outlook shared claenders however i dont see any documenation on how to repoduce this at all?.
Regards
David

Hi,
I'm having problems getting the OlympicGames-Demo to work.
I'm using Visual Studio Express Web 2013,Microsoft SQL Server Express 2008 R2, Telerik.DataAccess 2015.3.1221.1. and UI for ASP.NET AJAX Q1 2016 SP1.
When i run the .master - File i get the exceptions shown in exception1.png and excpetiondetails.png.
i also tryied to reinstall the dataacess-packages and got the exceptions in fluentpackageinstalllog1.png and fluentpackageinstalllog2.png. when reinstalling the fluent-package.
Any help appreciated!
Regards

