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

RadFormDecorator & MultiLine Textbox

4 Answers 155 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
Jacques
Top achievements
Rank 1
Jacques asked on 03 Jul 2008, 02:43 PM
Multiline textboxes are not appearing when the RadFormDecorator is being used. The same textbox set to singleline will appear.

This problem is occurring when using IE7 as the browser. It appears normally in Firefox.

If the RadFormDecorator is removed, the multiline text box appears normally.

In our application, the RadFormDecorator is located in the master page.

Is there a solution to this problem?

Jacques

4 Answers, 1 is accepted

Sort by
0
Stuart Hemming
Top achievements
Rank 2
answered on 04 Jul 2008, 06:29 AM
Jacques,

This is a known bug.

Immediately after the definition of the FormDecorator on your page add this ...
      <!-- Fixes for 2008Q1SP2 FormDecorator problems --> 
      <style type="text/css">textarea, button {visibility:visible !important;}label {zoom:1;display: inline-block !important;} </style> 
      <script type="text/javascript"
        function pageLoad() { 
          var inputs = document.getElementsByTagName("INPUT"); 
          for (var i=0; i < inputs.length; i++){ 
            inputs[i].style.zoom = "1";                 
          }        
        } 
      </script>  
      <!-- End of fixes --> 
And all will be well.

Hopefully, the next release is going to see a permanent fix for this problem.

--
Stuart
0
Alex Dybenko
Top achievements
Rank 2
answered on 04 Jul 2008, 06:31 AM
Hi,
have same problem here. For me adding:

style

="visibility:visible !important;"

as textbox attribute helped so far. But if there is a better solution - would be happy to know it

Alex
0
Tervel
Telerik team
answered on 04 Jul 2008, 07:30 AM
Hi guys,

There is a forum thread related to all reported RadFormDecorator problems. It features an attached page that provides solutions for them. All of these have already been implemented into the RadFormDecorator and the next update will feature a properly working control without any extra effort on the developer.

The forum thread is:
http://www.telerik.com/community/forums/thread/b311D-bekebd.aspx



Sincerely yours,
Tervel
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Jacques
Top achievements
Rank 1
answered on 07 Jul 2008, 12:29 PM
Thanks the the reply guys. It solved the problem.

Thanks again,

Jacques
Tags
FormDecorator
Asked by
Jacques
Top achievements
Rank 1
Answers by
Stuart Hemming
Top achievements
Rank 2
Alex Dybenko
Top achievements
Rank 2
Tervel
Telerik team
Jacques
Top achievements
Rank 1
Share this question
or