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
Avinash Dhanke 32Avinash Dhanke 32 

I have build cloning functionality

I built visualforce page but i have one get a error on that when we click on radiobutton and select one value in deopdown and click on clone button following screenshot is belowUser-added image
Dushyant SonwarDushyant Sonwar
Hi Avinash ,

This may be due to binding variables . You may have binded variable of different datatype and filling value of some other datatype
Example : adding text values  in integer variable binded textbox .

 
Dushyant SonwarDushyant Sonwar
I faced this error some times when variable binding is wrong.
Dushyant SonwarDushyant Sonwar
If my answer helps you , please close this query by marking best answer

Also if you want to change remove the dom id in error message example xxxxxx Validation Error Value is not valid 
Then you can use label attribute
<apex:selectRadio value="{!country}" label="Radio Form">
Your message will look like 
Radio Form Validation Error Value is not valid

Hope this helps.