Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
227 views

Hello,

I've been trying the Rad Componets for ASP.net and a small issue came up.

I was trying to create a Self-referencing hierarchy grid programmatically on the Page_Init Event.

While I have been successful in creating the grid in the designer view, when I set up it's structure in the Page_Init the hierarchy doesn't seem to be working (ie I get all the records and columns to show normally but they don't have any children).

Is it possible to give me a few pointers on what I need to create the Self-referencing structure on the grid?

PS:My code looks like:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="SelfHierarchyRadGrid._Default" %>  
 
<%@ Register assembly="Telerik.Web.UI, Version=2008.3.1105.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" namespace="Telerik.Web.UI" tagprefix="telerik" %>  
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
 
<html xmlns="http://www.w3.org/1999/xhtml" >  
<head runat="server">  
    <title></title>  
</head>  
<body>  
    <form id="form1" runat="server">  
    <telerik:RadScriptManager runat="server">  
    </telerik:RadScriptManager>  
    <div>  
      
        <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None">  
        </telerik:RadGrid>  
        <asp:SqlDataSource ID="SqlDataSource1" runat="server"   
            ConnectionString="<%$ ConnectionStrings:TestDBConnectionString %>"   
            SelectCommand="SELECT [aa], [parentaa], [Text] FROM [HierarchyTest]">  
        </asp:SqlDataSource>  
      
    </div>  
    </form>  
</body>  
</html>  
 
protected void Page_Init(object sender, EventArgs e)  
{  
  if (!IsPostBack)  
  {  
    InitGrid();  
  }  
}  
private void DefineStructure()  
{  
   RadGrid1.DataSourceID = "SqlDataSource1";  
 
   RadGrid1.MasterTableView.HierarchyDefaultExpanded = true;  
   RadGrid1.MasterTableView.HierarchyLoadMode = GridChildLoadMode.Client;  
   RadGrid1.MasterTableView.AllowSorting = true;  
   string[] dkn={"aa""parentaa"};  
   RadGrid1.MasterTableView.DataKeyNames = new string[] { "aa""parentaa" };  
   RadGrid1.MasterTableView.SelfHierarchySettings.ParentKeyName = "parentaa";  
   RadGrid1.MasterTableView.SelfHierarchySettings.KeyName = "aa";  
   RadGrid1.ClientSettings.AllowExpandCollapse = true;  
 
   RadGrid1.AutoGenerateColumns = false;  
   RadGrid1.ClientSettings.Selecting.AllowRowSelect = true;  
 
   //Create Columns  
   GridBoundColumn boundcolumn = new GridBoundColumn();  
   boundcolumn.datafield="aa";  
   RadGrid1.MasterTableView.Add(boundcolumn);  
   boundcolumn.UniqueName = "aa";  
   boundcolumn.Visible = true;  
   boundcolumn.HeaderText = "aa";  
 
   //... Rest of the columns ...  

Pavel
Top achievements
Rank 1
 answered on 12 Dec 2011
1 answer
146 views

Hi,

The RadEditor (version 5.6.4.0, RadEditor2.dll and Treeview (version 5.1.3.0, RadTreeview.Net2.dll) are currently  being used by our team, we are thinking about the possibility to upgrade to latest ajax enabled radcontrol (Telerik.web.UI.dll version 2011.3.1115.35). We are using vs 2010, framework 3.5.   What are the steps for upgrading the vs 2010 website ?  Anything we need to watch out f( we like to make sure all the existing content will be compatable with the new controls).

Any input will be appreciate, thanks.

Rumen
Telerik team
 answered on 12 Dec 2011
8 answers
340 views
Details are here:
http://www.codeplex.com/AjaxControlToolkit/WorkItem/View.aspx?WorkItemId=15204
http://forums.asp.net/t/1174669.aspx
http://dotnetdebug.net/2008/05/25/
http://www.codeplex.com/AjaxControlToolkit/WorkItem/View.aspx?WorkItemId=14857

I encountered this problem recently by using the telerik script manager with "ScriptCombine" set to true and deploying from a 32-bit machine to a 64-bit machine.

Are you aware of the above issue? I'm assuming your code works the same as the stack trace points to the same area of code:

Assembly "..." does not contain a script with hash code "...".

Telerik.Web.UI

STACK TRACE:

   at Telerik.Web.UI.ScriptEntry.Deserialize(String serializedScriptEntries)

   at Telerik.Web.UI.CombinedScriptWriter.WriteCombinedScriptFile()

   at Telerik.Web.UI.WebResource.ProcessRequest(HttpContext context)

Stroika
Top achievements
Rank 1
 answered on 12 Dec 2011
2 answers
63 views
Hello, 

I would like to add tagcloud in a radcombobox. Is this possible?
because It is for filtering the data of Grid.

Is there any good idea put on the narrow area of the upper part of Grid? 
Mikiya Sato
Top achievements
Rank 1
 answered on 12 Dec 2011
1 answer
294 views

I have a need to filter one column based on what the user selects in a rad combo box. It works fine with one value selected but when two or more values are selectd it will not filter correct. I also need to do this client side so server side is not an option. I think the problem is within the "OR" clause. Anyone have any suggestions?
Thanks for any help,
D

<telerik:GridBoundColumn UniqueName="foundin" DataField="foundin" HeaderText="Fields search term matched"
    HeaderStyle-Width="215px" ItemStyle-Width="215px" FilterControlWidth="215px"
    AllowFiltering="true" ItemStyle-Wrap="True">
    <FilterTemplate>
        <telerik:RadComboBox ID="radcombo_foundin" runat="server" UniqueName="radcombo_foundin"
            Width="200px" OnClientDropDownClosed="filterfoundin" CheckBoxes="true" Filter="Contains" >
        </telerik:RadComboBox>
    </FilterTemplate>
</telerik:GridBoundColumn>


 

function filterfoundin(sender, e) {
    var tableView = $find('<%=rad_SearchResults.ClientID %>').get_masterTableView();
    var filter = "Contains";
    var i = 0;
    var q = "";
    while (i < sender._itemData.length) {
        q += sender._itemData[i].checked ? sender._itemData[i].value : "";
        if (i + 1 < sender._itemData.length) {
            if (sender._itemData[i].checked) {
                q += " OR ";
            }
        }
        i++;
    }
    q = q.substring(q.length - 4) == " OR " ? q.substring(0, q.length - 4) : q;
    var hidden = document.getElementById('<%=hf_foundin.ClientID %>');
    hidden.value = q;
    tableView.filter('foundin', q, filter);
}

 

 

 

 

 

 

Marin
Telerik team
 answered on 12 Dec 2011
2 answers
471 views
Hi,

When paging is enable on grid,and user click on page number or arrows, page will be refreshed and posting back.
On SEO page will be refresh too.

I want just a js function fire and grid send page number as a parameter to it.
I want make a full client grid paging.

Best regards.
mohammad
Mohammad sadegh
Top achievements
Rank 1
 answered on 12 Dec 2011
0 answers
78 views
Hello,

Recently i am working with radcalendar control ,it works well but our requirement is to change the css  of radcalendar like the image i have attached below ,is it possible to do like that ,how to do that ,please respond if u have any idea about it.
Saimadhukar
Top achievements
Rank 1
 asked on 12 Dec 2011
2 answers
202 views
Hi All,

 I have placed a RadGrid and a RadComboBox in my page. On SelectedIndexChanged event of the RadComboBox, i am searching the data and Binding it to the RadGrid. The problem occurs when i select an option for which there is no Data, and just after that, if I try to select an option which has data in the search criteria the following error is showed: 

Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500


If i place an ASP.NET DropDown in place of the RadComboBox, then everything runs fine. One more thing, if i replace the Telerik 2011 ddl's with my old dll's i.e. 2010, then the error is not coming.

Kindly give me some solution for this problem.

Regards,
Raju Sen
Abhijit
Top achievements
Rank 1
 answered on 12 Dec 2011
1 answer
240 views
Hello,
Below is scenario I want to use:
1. Create custom filters on clientside. Not with RadFilter object!
2. Iterate filters collection and add expressions to RadFilter on clientside.
3. Call applyExpressions() to actually apply filter.

But on 2nd step RadFilter starts postback right after 1st expression is added! This is not what I want.
Problem is the RadFilter a part of custom AJAX control which is inserted to RadWindow's ContentTemplate. RadWindow is placed at the same page as grid. And each time when postback occures, the whole grid will reload. This is not acceptable for us. Can you please help?
Thank you.
Marin
Telerik team
 answered on 12 Dec 2011
1 answer
138 views
I'm using a NestedViewTemplate, to provide a child grid with product info, for each customer row in the parent grid. The child grid works well, when I expand one parent grid row. Also, if I collapse the first child grid, then expand a different customer row, the second child grid also works well.

My problem is this; when I expand one customer row, then expand a second customer row while the first customer row is still expanded, BOTH child grids change to the second customers detail. I need the first child grid to stay aligned to the first customer and the second child grid to align to the second customer.

The attached image demo's this. When I expanded the second customer's child grid, the first customer's child grid also changed.

I recall seeing another thread that dealt with this issue, but can't find it now. Any help is appreciated.

Using: 

Version=2011.2.906.35

Princy
Top achievements
Rank 2
 answered on 12 Dec 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?