You need to sign in to do that
Don't have an account?
bcg
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...
I think you are binding all select list with a single variable. You need to have different variable for all select list.
Hello bcg,
can you post your code so that i can understand the problem ?