Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
131 views
Hi,

I have Q3 2010 asp.net ajax,  i found a bug when i implement with Programmatic data (BindtoDataset)
i have all value don't have parent value match. (in french :

Cette contrainte ne peut pas être activée, car toutes les valeurs n'ont pas de valeurs parentes correspondantes.

)
My table is like as :
id    parent_id  title
1     0               test1
2     0               test2
3     1               test3
4     2               test4
5     1               test5
6     2               test6

I don't understand cause if i implement with Ienumerable from my dataset it's works.

Have you an idea ?

thank's
Peter
Telerik team
 answered on 26 Nov 2010
3 answers
89 views
Hi,
In our application we got a webform with 7 tabpages  (telerik:RadTabStrip -> telerik:RadMultiPage).
For each tabpage we created a usercontrol.
On one of the tabpages is a button for opening a radwindow.
At the beginning it took 3 seconds to open this window.
After installing the RadAjaxManager on the webform and the RadAjaxManagerProxy on the usercontrol-tabpage
it slows down to 9 seconds.

Between the servside eventhandler of the button-click :

        protected void btnProductDataSelectRefMRDRNr_Click(object sender, EventArgs e)<br>        {<br>            RadWindowManager_ProductData.Windows[0].VisibleOnPageLoad = true;<br>        }



And the Page_load Event of the Radwindow :

    <telerik:RadWindowManager ID="RadWindowManager_ProductData" runat="server" <br>        Animation="FlyIn" VisibleStatusbar="False" Behavior="None" BorderStyle="None" KeepInScreenBounds="True" Skin="Telerik"><br>        <windows><br>            <telerik:RadWindow ID="RadWindowselectMRDR" runat="server" ShowContentDuringLoad="false" <br>                Width="1200px" Height="540px" Title="select MRDR" Behaviors="Close,Move" VisibleStatusbar="false"<br>                OnClientClose="OnWindowClose" Modal="True" NavigateUrl="SelectMRDR.aspx"><br>            </telerik:RadWindow><br>        </windows><br>    </telerik:RadWindowManager>  

 
It slows down from 2 to 8 seconds.

Thanks for any help,
Juergen
Pavlina
Telerik team
 answered on 26 Nov 2010
3 answers
191 views
How can we expand  hierachical table in code behind ? After rebind the all radgrid ,i want to expand specific row.
Pavlina
Telerik team
 answered on 26 Nov 2010
3 answers
49 views
Environment: Windows 7, Visual Studio 2008 SP1, Telerik ASP.NET AJAX 2010 Q3.
If a RadGrid Control is placed in a RadAjaxPanel, all changes to the RadGrid in DESIGN VIEW will be lost. No problem if it is out of RadAjaxPanel. Why? Excuse me, I can't search any solutions in forum or google.
Pavlina
Telerik team
 answered on 26 Nov 2010
1 answer
127 views
Hi,

Currently, I am using the scheduler to schedule appointments to resources over a 12 hour period of the day.

I would like to control the width of the time column that runs down the left hand side.  Currently, I do not see any properties to control the width.  The width is pretty wide, limiting precious screen real estate.

Also, I see that the rowHeight property also controls the rowHeight of the resourceHeader row.  This is somewhat undesireable because I would like maximize the row heights of those rows that will have appointments displayed on them so that I can fit as much data in as possible.  However, when I increase the rowHeight, it also increases the height of the resource headers, which is unnecessary.  This again impacts screen real estate.

I am currently using Telerik.Web.UI v. 2008.3.1314.35

Has there been any advancements made to address these issues in newer releases or are there workarounds so help out?

Thanks!
Peter
Telerik team
 answered on 26 Nov 2010
2 answers
84 views
Hi Guys,

Scenarios: Using RadAjaxManager/Update Panel

Master Page
++++++++++++++++++++++++++++++
Content Page
-----------------------------------------------
Tab1                Tab2                  Tab3
================================
user ctrl1          user ctrl2          user ctrl3     (dynamic loading on tab selection, one control at a time)
================================

-----------------------------------------------
+++++++++++++++++++++++++++++
Like this
http://www.telerik.com/help/aspnet/ajax/ajxloadusercontrols.html

Working fine.

Problem:  when i switched to tab2 and see the view source of browser, it shows tab1(user ctrl1) HTML (old HTML not update html).
how to get the latest(updated) html of current tab(ctrl).


Please suggest the appropiate solution.

Regards
Ravi
mcamail2002@gmail.com


Yana
Telerik team
 answered on 26 Nov 2010
1 answer
117 views
Hi
We are using the RadEditor as a WYSIWYG to maintain our intranet site.
Often, there is a need for us to link to pages within the intranet. Is there a way for the HyperLink Manager to "connect" to a popup or something similar where we show our sitemap and when someone clicks on one of the items on the site map, it gets sent back to the hyperlink manager ?
Rumen
Telerik team
 answered on 26 Nov 2010
2 answers
101 views
I have a strange problem occurring on my grid.

My grid has a detailtable and expand/collapse button. It uses a setting FrozenColumnsCount="3" .
On initial load of the page, the grid shows a gap below the Horizontal scrollbar. Also, the frozen columns do not work on this initial load.
Please see attached screen shots.

I found if I removed  FrozenColumnsCount="3" from the grid, the problem does not occur. This might be a coincidence though??
I also found, if I click the expand button, the problem disappears.

This might be too hard to troubleshoot what is causing this, but I need some guidance as to a 'workaround'. As I said above, the problem disappears when clicking expand. Do you know what part of the expand code is fixing this?

Some background information. My grid is underneath a table. I have some javascript that calculates the grid's splitter height based on a parent container minus the table height. This appears to work successfully, but I thought I would share this in case it could be influencing the problem.
<telerik:RadSplitter ID="RadSplitterRoadRoadwayGrid" runat="server" Width="100%" Orientation="Vertical"
                BorderSize="0" VisibleDuringInit="false" OnClientLoad="setSplitterHeight">
                <telerik:RadPane ID="RadPaneRoadRoadwayGrid" runat="server" Scrolling="None" BorderWidth="0"
                    Width="100%">

// Calculates the height of the grid on the fly.
function setSplitterHeight(splitter, arg) {
    var myAjaxPanel = document.getElementById('<%= RadAjaxPanelRoadRoadway.ClientID %>');
    var panelHeight = myAjaxPanel.parentNode.parentNode.clientHeight;
    var myTable = document.getElementById('myTable');
    var tableHeight = myTable.clientHeight;
    splitter.set_height(panelHeight - tableHeight - 36);
    var pane = splitter.GetPaneByIndex(0);
    pane.set_height(panelHeight - tableHeight - 36);        
}

I am also applying column widths at runtime. The way I am doing this is shown in the following post:
http://www.telerik.com/community/forums/aspnet-ajax/grid/how-to-set-column-width-in-code-behind-for-detailtable.aspx

Thank you for any insight into this problem!
Kellie
Dimo
Telerik team
 answered on 26 Nov 2010
2 answers
114 views
Hide Columns of Grid after using advance binding... 
i am using data reader to bind data with grid and i want to hide some columns on the base of user given criteria on server side
Abdul
Top achievements
Rank 2
 answered on 26 Nov 2010
3 answers
234 views
Hello All,

I having a RadGrid and I'm executing below code to get all record in Grid,

GridItem

 

headerItem = grdADInbox.MasterTableView.GetItems(GridItemType.Header)[0];

 


It is giving total rows by, please find attached.

headerItem.OwnerTableView.DataSource

now I need to loop it and read that??

Please help.

Daniel
Telerik team
 answered on 26 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?