This is a migrated thread and some comments may be shown as answers.

2.826 Pb with Composite control workin with 2.723

3 Answers 25 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
CSurieux
Top achievements
Rank 2
CSurieux asked on 30 Aug 2008, 12:30 PM
Hello,

Last version has broken lot of my running code, main pb is with RadAjaxManager and a composite control.
(I have also installed the VS2008 SP1 before last telerik version.)

This composite is an asp  Panel wich contains a radTextBox and a RadCombobox.
I had not enough time to identify the pb in details but it appears that my controls is not behaving correctly.
All my code runs in codebehind, and  may composite is no more created, crashing my app.
This composite is added to a global settings table using RadTabStrip and PageViews in RadMultiPage.

Classic controls don't seem to suffer from the pb of this composite.

I have also pb with RadFormDecorators, and I hope that changing decoratedcontrols='all' to 'default' will solve the issue.


Regards
CS

3 Answers, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 01 Sep 2008, 08:30 AM
Hi Christian,

Unfortunately the provided information is not sufficient to trace the exact reason for the erroneous behavior you encountered after the upgrade.

To progress in our investigation, is it possible for you to isolate a working subset of your project which operates as expected with the previous version 2008.2.723 of RadControls for ASP.NET AJAX and fails with the 2008.2.826 version of the suite? Thus we will be able to test/debug the example locally and will do our best to provide up-to-the-point explanation/solution.

Best regards,
Stephen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
CSurieux
Top achievements
Rank 2
answered on 01 Sep 2008, 12:28 PM
Hello,

Thanks for answer, I have open a ticket on my problems with 2.826.
Lot of them seems generated by FormDecorator.

The composite control broken is built like this in its CreateChildControls method

Panel panel                 =   new Panel();
 panel.ID                    =   "FdPnl";
RadComboBox dd          = new RadComboBox();
dd.DataSource           = DataSource;
dd.DataValueField       = DataValueField;
dd.DataTextField        = DataTextField;
dd.Style.Add("float","left");
dd.ID                   = panel.ID + "_dd";
if ( Width != Unit.Empty )
      dd.Width                = new Unit((Width.Value / 2 - 1), Width.Type);
else    dd.Width                = new Unit("40%");

panel.Controls.Add(dd);
panel.Controls.Add(new LiteralControl(HTML_SPACE));

RadTextBox tb           = new RadTextBox();
tb.EmptyMessage         = LocalizeHelper.Localize("NEW_FOLDER", "New Folder ?");
tb.Columns              = 30;
tb.Width                = dd.Width;
dd.Style.Add("float","right");
tb.ID                   = panel.ID + "_tb";
panel.Controls.Add(tb);
Controls.Add(panel);


Regards
CS

0
Georgi Tunev
Telerik team
answered on 02 Sep 2008, 01:51 PM
Hi Christian,

I have just answered your support ticket on the subject. For convenience I am pasting my reply below:


We are familiar with the problem "decorated RadTextBox in a multipage" and the current workaround is to either remove the DecoratedControls property or to set it to Default.
As for the other problems, I am afraid that without a project that isolates them and which we can run locally, we cannot be of much help. Please try to create such project and send it to us - we will do our best to help right away.




Best wishes,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
General Discussions
Asked by
CSurieux
Top achievements
Rank 2
Answers by
Sebastian
Telerik team
CSurieux
Top achievements
Rank 2
Georgi Tunev
Telerik team
Share this question
or