Is it possible to have combobox with 2 valuefields, other words, if we are inserting some columns, this combobox should give value to 2 columns. Hope its undersentable.
Is it possible to have combobox like this inside ASPxGridView?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use this procedure:
1. Submit one combo box value
2. In ASPxGridView.RowInserting event use that value (retrieve it from e.NewValues) to fetch others.
3. Insert fetched values into e.NewValues.
This will work if you can fetch all row values using combo box value.