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
bcgbcg 

regarding select list saving overriding all records

 

i have a query regarding select option list...
i have records like 
emp_name     designation       type
abc                abc            selectoption list (leave type)
abc1               abc1           selectoption list (leave type)
abc2               abc2           selectoption list (leave type)
 when i am saving the records than the problem is when i am selcting value from select option than it will override my all records with tha last value
likeee
emp_name     designation       type
abc                abc            selectoption list (leave type l1)
abc1               abc1           selectoption list (leave type l2)
abc2               abc2           selectoption list (leave type l3)
Save
it will save it like
emp_name     designation       type
abc                abc            selectoption list (leave type l3)
abc1               abc1           selectoption list (leave type l3)
abc2               abc2           selectoption list (leave type l3)

i have a query regarding select option list...

Sonali BhardwajSonali Bhardwaj

I think you are binding all select list with a single variable. You need to have different variable for all select list.

minkeshminkesh

Hello bcg,

                   can you post your code so that i can understand the problem ?