Telerik
Skip Navigation LinksHome / Community / Forums / ASP.NET AJAX > Upload > Upload Additional Fields - Multiline Textboxes

Answered Upload Additional Fields - Multiline Textboxes

Feed from this thread
  • Gregg avatar

    Posted on Jul 2, 2009 (permalink)

    I suppose this will be more of a javascript question.

    The Upload/Additional Fields example http://demos.telerik.com/aspnet-ajax/upload/examples/additionalfields/defaultcs.aspx is nice, but how does one make the additional text boxes multi-line as well as set their max length, rows, etc, - in other words, how to set the other properties we commonly see in an asp:TextBox control?

    Reply

  • Answer Telerik Admin admin's avatar

    Posted on Jul 8, 2009 (permalink)

    Hi Gregg,

    You can easily achieve your goal by creating new textarea controls instead if input, i.e.

    function CreateInput(inputName) 
                { 
                    var input = document.createElement("textarea"); 
                    input.name = inputName; 
                     
                    return input; 
                } 


    All the best,
    Paul
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Check out the tips for optimizing your support resource searches.

    Reply

Back to Top

Skip Navigation LinksHome / Community / Forums / ASP.NET AJAX > Upload > Upload Additional Fields - Multiline Textboxes
Related resourses for "Upload Additional Fields - Multiline Textboxes"

ASP.NET Upload Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer  |  Step-by-step Tutorial  ]

Powered by Sitefinity ASP.NET CMS

Contact Us | Site Feedback | Terms of Use | Privacy Policy
Copyright © 2002-2010 Telerik. All rights reserved.