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
morganeCRMCLOUDERmorganeCRMCLOUDER 

Save method with html <table> tag

Hello,

 

I have a visualforce page containing a table in html (<table><td> ...). 

The user can fill input text boxes with values, and I'd like to do a "save method" to save the new values. 

 

Is it possible ? (without using <apex:inputText>) 

 

 

Thank you for any piece of information, 

souvik9086souvik9086

Yes you can use string values in the inputtext boxes and then in save action you can assign those string values in your object fields.

 

If this post is helpful please throw Kudos.If this post solves your problem kindly mark it as solution.

Thanks

Avidev9Avidev9
Well Interesting stuff!
Why you dont want to use inputText ?
Any specific reason ?
morganeCRMCLOUDERmorganeCRMCLOUDER
because the values in the table are displayed thanks to an ajax call and a jquery function.
Avidev9Avidev9
Can you post some code here ?