Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
74 views
Hi guys,

I'm adding a static menu to a website. I'm thinking the fastest rendering will be if I declarative create it in-page. If it's not I could just as well use xml or whatever way that is faster.

Perhaps there isn't much difference between these methods?

Regards,
-DJ-
Atanas Korchev
Telerik team
 answered on 26 Sep 2008
3 answers
238 views
Hi
I've been using Telerik's web-controls for years and I am really happy with them (except for FireFox3). Today I just decided to give a try to ASP.NET AJAX controls and setup a control panel as soon as I can...
I had some minor problems like:
  1. Smart Tags won't show properly when I embed the telerik controls in a UserControl  (Ajax 1.0 Web Application in VS2008Pro).
  2. above said, I had to review the docs or just respond to runtime errors to handle the smart tags' job, by HAND. It's really annoying to have to add a RadScriptManager everywhere you need a telerik control...
But, this is the worst problem I had:
When I embed a RadEditor in a usercontrol (NewsNew.ascx) and after lots of jumping around(ScriptManager, StylesheetManager, AjaxManager), I get a badly scrambled junk of icons as toolbars in my browser! It took like 5 hours to solve this problem...
In your previous lovely version of controls, radEditor is an IFrame in runtime and therefore isolated from the host page's css and js. Very clean. but this version uses a table for main layout and therefore css rules may drill down to even "the resize handle"!! (put a radEditor inside a div with its dir set to rtl and see it for yourself, or try to write a general css rule for the whole application to handle ul.li.ul nested tags and wee what happens!)

In our company, we have common templates for our applications and these templates are heavily loaded with css and js. I had to rewrite the css from scratch to overcome this drill-down behavior...
It's rally a bad idea to put something like editor inside a table! The IFrame version worked much better.

I have a question too. The ScriptManager uses WebResource HttpHandlers to download the required js files to client's browser. Doesn't this prevent caching on client-side? (The same question goes to StyleSheetManager and css files' caching)

After all, I should thank for the visual improvements. they're really Fabulous!
Tervel
Telerik team
 answered on 26 Sep 2008
2 answers
94 views
I am currently trying to use the RadPanelBar. I have a table with three columns, and would like to display Col1 - Col2 on the top level.
And when it is expanded, I would then like to display Col3
Please help
Atanas Korchev
Telerik team
 answered on 26 Sep 2008
6 answers
263 views
i have a banner bar with itemtemplate but it doesn't seem to be working.  I can see the company reports and my reports but i can't have it expand and see the content inside of it. if i leave the way like the code is now it shows all and doesn't collapse. if i set the visible to false on the table i can't expand the item. here is the code below. what did i do wrong please help me. thank you very much.

<telerik:RadScriptManager ID="ScriptManager" runat="server" />

<telerik:RadPanelBar ID="RadPanelBar1" runat="server" ExpandMode="FullExpandedItem">

<CollapseAnimation Duration="100" Type="None" />

<Items>

<telerik:RadPanelItem runat="server" Text="Company Reports" Expanded="false">

<ItemTemplate>

<asp:Table runat="server" ID="tableCompanyReports" BorderWidth="0" CellPadding="0" CellSpacing="0">

<asp:TableRow>

<asp:TableCell>

<asp:DropDownList runat="server" ID="ComapnyReports"></asp:DropDownList>

</asp:TableCell>

<asp:TableCell>

<asp:Button runat="server" ID="Next" Text="Next" />

<asp:Button runat="server" ID="Save" Text="Save As" />

</asp:TableCell>

</asp:TableRow>

</asp:Table>

</ItemTemplate>

</telerik:RadPanelItem>

<telerik:RadPanelItem runat="server" Text="My Reports" Expanded="false">

<ItemTemplate>

<asp:Table runat="server" ID="tableMyReports" BorderWidth="0" CellPadding="0" CellSpacing="0">

<asp:TableRow>

<asp:TableCell>

<asp:DropDownList runat="server" ID="MyReports"></asp:DropDownList>

</asp:TableCell>

<asp:TableCell>

<asp:Button runat="server" ID="ModifyReport" Text="Modify Report" />

<asp:Button runat="server" ID="BuildNewReport" Text="Build New Report" />

</asp:TableCell>

</asp:TableRow>

</asp:Table>

</ItemTemplate>

</telerik:RadPanelItem>

</Items>

<ExpandAnimation Duration="100" Type="None" />

</telerik:RadPanelBar>

Paul
Telerik team
 answered on 26 Sep 2008
3 answers
420 views
I would like to add a row to the grid programmatically (server-side) that is not in the datasource for the grid - or to add rows to the grid without a datasource at all. Is this possible?

Thanks
Vlad
Telerik team
 answered on 26 Sep 2008
1 answer
108 views
I am not sure about the name of this technologie, it should be a kind of autocomplete. It works in this way, lets say the user types "a" in the textbox, a dropdown shows all avaiable values from the datasource which begin with a. Eg. Adam, Ader, Apple, Anton, Anna, Ania. Once it types an just Anna, Anton, and Anja reamins and once it types a third letter ann just Anna remains.

Is this future supported in any of Telerik controls?
Thanks
Vlad
Telerik team
 answered on 26 Sep 2008
1 answer
108 views
Hi,

Hi, after installation perform these procedures related to the error does not occur, but when I compile the line of Telerik.charting in WebConfig, this returning, causing the error described. What can I do?

Error: 1 The type 'Telerik.Charting.<SomeType> exists in both 'c:\WINDOWS\assembly\GAC_MSIL\Telerik.Charting\...\Telerik.Charting.dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\...\RadChart.Net2.DLL'

I try this:
1) If you are migrating your projects to use RadControls "Prometheus" you may initially want to remove the reference to the Telerik.Charting.dll from your Web.config file. In this case you will be using the old ASP.NET Chart and will not need the Telerik.Charting.dll that comes with the Prometheus suite. The Telerik.Charting.dll is NOT required for the operation of the "Prometheus" controls other than Chart.

and that
2) If you are already using RadChart "Prometheus" then you will need to remove reference to RadChart.Net2.dll and continue using Telerik.Charting.dll
Ves
Telerik team
 answered on 26 Sep 2008
1 answer
211 views
Hi,
I am dymanically adding menu items at runtime..
myMenu.Items.Add(childMenu)
How do i set the childmenu as checkbox's ??

I understand that i may have to use an ItemTemplate within aspx, but if i do this, how do i edit the menu properties at runtime ?

Any help please?
Thanks
Mark
Shinu
Top achievements
Rank 2
 answered on 26 Sep 2008
6 answers
481 views
I have a detail table view inside a master table, and I wish that I can handle the  event when I click on the expand/collapse icon so that I am program behind. I wonder if it is possible to control the eventhandler of expand/collapse detail table view
Eric
Top achievements
Rank 1
 answered on 26 Sep 2008
1 answer
131 views
I have a grid bound to a heirarchal data source. The MasterTableView and each DetailTable beneath it have their own unique custom form template. I'm using the OnItemDataBound event to select the correct values for some drop downs and other custom controls within each custom form template.

How do I determine which level in the heirarchy has fired the OnItemDataBound event so that only the code specific to that levels form template is executed? At the moment the program throws exceptions because the selection code for all the templates fire regardless of which form template is being shown.

thx, joey
Shinu
Top achievements
Rank 2
 answered on 26 Sep 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?