function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
raghu123raghu123 

infinite textinputs in visualforce page

Hi Guys,

                 I need to create infinite textinputs in visualforce page.Can you please help me.

bob_buzzardbob_buzzard

You won't be able to create an infinite number of text inputs - you'd break the maximum page size limit of 15Mb!

 

If you want to have an indeterminate number, I'd suggest you create a list of Strings to back your inputs and use the apex:repeat component to put out one input per list entry.