Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
148 views
Our company uses your controls in a lot of our web applications.  Recently we developed a new app using your new 2008 ASP.NET Ajax controls. We are using the grid control, dropdowns, rad windows, Ajax managers, Ajax panels, date time picker, and others.  Through testing we have notice a lag in the rendering times of the controls.  The rad windows specifically lags more than any of the other controls.  Is there a way to preload the controls in the deployed website? Or is there a way to optimize the .dll so that the controls can render faster.  We have already turned debug off for the production release and we also added the Telerik .dll to the GAC.  Is there anything else I can do?  We are currently risking the possibility of stripping out all the rad windows, as UAT is complaining about the overall speed.  I know there is overhead with using the Ajax stuff, and that is expected.  I have also looked at your optimization for your grid, but our grid only has 30 records in it at a time.  Just need to see if there is something else I can do.  I am currently using the first 2008 ASP.NET Ajax release (2008.1.619.20), I haven’t updated to the newest update yet. 
Sebastian
Telerik team
 answered on 16 Sep 2008
1 answer
55 views
Hi,

I'm using a sitemapdatasource with a panelbar to create a panel menu with links to other pages within the application. I would like the pages to popup in a radwindow when the user clicks on the panel bar item. Is it possible to use a radwindowmanager for this, or what would be the easiest way way to go about this...???
Georgi Tunev
Telerik team
 answered on 16 Sep 2008
1 answer
264 views
I noticed that with Telerik.WebControls.RadTreeView there is a Sort property but with Telerik.Web.UI.RadTreeView I cannot find this property. How do you sort the treeview if you are using Telerik.Web.UI.RadTreeView?

Thank you.

 

Shinu
Top achievements
Rank 2
 answered on 16 Sep 2008
3 answers
196 views
Background: I tried to use the Commands property to add custom command buttons. However, when I did, at least one of the buttons frequently were displayed under the title bar (with the RadDock content) and not on the titlebar.

Next I added my custom buttons to the titlebar using the TitlebarTemplate. (Since I'm creating the RadDock instance programmatically and not declaratively I used TitlebarContainer property.) These buttons show up consistently on the title bar, but event handlers (Command or Click) are not raised on the server side. A postback is generated, but the event handlers are not raised.

Any ideas?

Some testing in a sandbox revealed that only ImageButton events aren't being raised. LinkButton and Button Command and Click events in the RadDock.TitlebarTemplate do get raised.
Sophy
Telerik team
 answered on 16 Sep 2008
1 answer
180 views
Hi,

I have some questions with a chart that is constructed with the following code (the aspx does not change any properties);
System.Drawing.Color COLOR_LINE = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xcc);  
        System.Drawing.Color COLOR_FUEL = System.Drawing.Color.FromArgb(0xaf, 0x93, 0x26);  
        System.Drawing.Color COLOR_EMPTY = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xcc);  
        System.Drawing.Color COLOR_BACKGROUND = System.Drawing.Color.FromArgb(0xff, 0xff, 0xff);  
 
 
        int maxLevel = 10000;  
        int currentLevel = 8000;  
 
        int level1 = currentLevel;  
        int level2 = maxLevel - level1;  
 
        // Current level  
        ChartSeries series1 = new ChartSeries();  
        series1.Name = String.Format("Current level: {0}", currentLevel);  
        series1.Type = ChartSeriesType.StackedBar;  
        series1.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Gradient;  
        series1.Appearance.FillStyle.MainColor = COLOR_FUEL;  
        series1.Appearance.FillStyle.SecondColor = System.Drawing.Color.Transparent;  
        series1.Appearance.LabelAppearance.Visible = false;  
        series1.Appearance.Border.Color = COLOR_LINE;  
        series1.AddItem(level1);  
        chart.Series.Add(series1);  
 
        // Max level  
        ChartSeries series2 = new ChartSeries();  
        series2.Name = String.Format("Max level: {0}", maxLevel);  
        series2.Type = ChartSeriesType.StackedBar;  
        series2.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Gradient;  
        series2.Appearance.FillStyle.MainColor = COLOR_EMPTY;  
        series2.Appearance.FillStyle.SecondColor = System.Drawing.Color.Transparent;  
        series2.Appearance.LabelAppearance.Visible = false;  
        series2.Appearance.Border.Color = COLOR_LINE;  
        series2.AddItem(level2);  
        chart.Series.Add(series2);  
 
        // Settings  
        chart.Appearance.Border.Visible = false;  
        chart.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;  
        chart.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;  
        chart.ChartTitle.Visible = false;  
        chart.PlotArea.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;  
        chart.PlotArea.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;  
        chart.PlotArea.Appearance.Border.Visible = false;  
        chart.PlotArea.XAxis.LayoutMode = Telerik.Charting.Styles.ChartAxisLayoutMode.Between;  
        chart.Legend.Appearance.Border.Color = COLOR_LINE;  
        chart.PlotArea.XAxis.Appearance.LabelAppearance.Visible = false;  
        chart.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.Border.Color = System.Drawing.Color.Red;  
        chart.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.Border.Width = 1;  
        chart.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.Border.Visible = true;  
 
        chart.PlotArea.YAxis.Appearance.LabelAppearance.Dimensions.Width = Telerik.Charting.Styles.Unit.Pixel(300);  
        chart.PlotArea.YAxis.AxisLabel.Appearance.Dimensions.Width = Telerik.Charting.Styles.Unit.Pixel(299);  
        chart.PlotArea.YAxis.AxisLabel.Appearance.Position.Auto = false;  
        chart.PlotArea.YAxis.Appearance.TextAppearance.Position.Auto = false;  
        chart.PlotArea.YAxis.Appearance.TextAppearance.Dimensions.Width = Telerik.Charting.Styles.Unit.Pixel(200);  
 
 
        chart.Appearance.BarWidthPercent = 50;  
        chart.Width = new Unit(350, UnitType.Pixel);  
        chart.Height = new Unit(250, UnitType.Pixel); 

Q1) The values on the Y-Axis get cut
Q2) Is it possible to adjust the space between the Y-axis and the bar?
Q3) How do I prevent the legend to overlap the bar?
Q4) Can I add a extra row of information in the legend?
Q5) Can the width of the area inside the axis be set in pixel

Best regards

Robert
Warnestam
Top achievements
Rank 1
 answered on 16 Sep 2008
1 answer
102 views
In my New user registration form i am having one column for Phone number
I am using numeric text box  for tht column...But when type number it will so like
(91,122,90) but i wnt to show like(9112290) how to i change format ...
I dont want comma between numbers

regards
azees




<telerik:RadNumericTextBox ID="txtIsd" runat="server" EmptyMessage="91">

</telerik:RadNumericTextBox>

Daniel
Telerik team
 answered on 16 Sep 2008
1 answer
132 views
Hi,

We are using the scheduler control but we discovered that the weekend days are not exposed as properties.How can we modify the scheduler (skin Office2007) to display Friday and Saturday as weekend (as is in the United Arab Emirates).

This means:

-The bg color for sunday needs to be #FFFFFF and hover bg color #E9F7FC
-The bg color for friday needs to be #F4FCFF and no hover action (or stays the same)

Thanks
Peter
Telerik team
 answered on 16 Sep 2008
2 answers
97 views
Hello,
I am a little dispointed, I trid to replace a multiline textbox by raditor to edit a section of web.config....and I discovered that it was not allowed.
I read explanations from differents forum threads, understanding that there was a problem with browser concept.

Very disapointed.

CS
CSurieux
Top achievements
Rank 2
 answered on 16 Sep 2008
3 answers
120 views
Basically HeaderText is being ignored when exporting to CSV, the headers used in the DataField.

This is inconsistent with the export to excel functionality which (correctly) displays the HeaderText as the headers.

Thanks

Guido Tapia
Sebastian
Telerik team
 answered on 16 Sep 2008
4 answers
264 views
Hi,
I recently installed the RadControls for ASPNET AJAX Q2 2008 but my installtion bin folder does not contain the RadUpload.Net2.dll file. It contains only the Telerik.Web.UI.dll and Telerik.Charting.dll.

Does anyone know where can I find the  RadUpload.Net2.dll ?

Thanks in advance for any solution.

Kabir
Paul
Telerik team
 answered on 16 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?