More documentation from the DevExpress website:
Questions tagged [repositorylookupedit]
33 questions
9
votes
1 answer
How to get selected value from DevExpress LookupEdit?
Hai all,
Am using DevExpress LookupEdit in C#.NET project,also set both Display Member and Value member property of LookupEdit.How do I get selected value from DevExpress LookupEdit.
Thank you

Vyasdev Meledath
- 8,926
- 20
- 48
- 68
3
votes
2 answers
DevExpress RepositoryItemLookUpEdit
I am binding the Grid with a business object which contains a field Country (which is another business object containing ID and Name). I want to display the country name set to the "Country" in the business object for each row. However if the user…

Jonny
- 2,787
- 10
- 40
- 62
2
votes
3 answers
How to get the devexpress lookupedit display text from the corresponding edit value
Hai all,
I want to get lookupedit display text when am giving correspond edit value.
example:
if am giving
LookupEdit1.Editvalue="3";
then it should show display text of Editvalue="3"
please help
//code
cmbChemical.Properties.DataSource =…

Vyasdev Meledath
- 8,926
- 20
- 48
- 68
1
vote
1 answer
How to get Devexpress LookupEdit Value Member Value?
Hi Im using devexpress .
I want to know how to get the value member value in lookupEdit.
I set the DisplayMember as prior to SupplierName
And ValueMember to SupplierID
The code below displays both and SupplierName as the text in lookupedit..
what I…

Prince Jea
- 5,524
- 7
- 28
- 46
1
vote
0 answers
Why popupform is not pop for lookupEdit?
Hi I am working on Winform and Devexpress.
I have a customized lookupEdit and I register it as a ribbon repositoryEdit. When I open my form, I can see this lookupEdit, but no popup comes. It's very strange when my customized control gets…

spspli
- 3,128
- 11
- 48
- 75
1
vote
1 answer
Using lookupedit on XtraGrid columns
I have a xtraGrid with 6 columns. I want to make one columns to lookupEdit columns.
how can i insert my datasource(datatable or dataset) on lookupeditcolumns.
thanks for helping.

TheMuyu
- 579
- 2
- 12
- 31
1
vote
0 answers
Devexpress LookupEdit issue ,change it manually
I have 2 lookupedit witch are exactly the same in everything but the value member
one of them is binded to an int32 column and it can be changed by changing the editvalue in code
The other one is binded to int64 and it can't be changed manually
Why…

Eng.Ali-AlGhabban
- 21
- 5
1
vote
1 answer
Display Member is not display at the first time event fired in RepositoryLookupEdit in Winforms Gridview Devexpress?
I used RepositoryLookupEdit in my 1st Column of Gridview. Using EditValueChanged Event remaining columns fill automatically, till now every thing is working fine. Then I call one Function inside RepositoryLookupEdit, After that very first time this…

Srihari
- 2,387
- 9
- 51
- 82
1
vote
3 answers
how to set devexpress lookupedit selected text in gridvidew
I have a grid which has two columns and the the first column has a lookupedit. I can fill the grid and the lookupedits but my problem is I dont know how to set the selectedtext according to the database?
here is how I fill the grid and the…

Arif YILMAZ
- 5,754
- 26
- 104
- 189
1
vote
3 answers
Devexpress LookupEdit drops down the list rather than displaying a single element
To my surprise, the Devexpress LookupEdit keeps drop downing (displaying the list rather than only displaying the default Edit Value [one element]). What property is messing with me?
Here is how I set the…

aby
- 810
- 6
- 21
- 36
0
votes
1 answer
DevExpress VerticalGrid Row properties
I use DevExpress 22. I add an EditorRow to the VerticalGrid. In EditorRow properties for RowEdit selected LookUpEdit from In-place Editor repository. LookUpEdit contains a list from the database with color names. when I select a color name from the…

liNkiN
- 1
- 1
0
votes
1 answer
Why my customized lookupEdit throw the following error
Error: Index was out of range Must be non-negative and less than the size of the collection
I have a customized LookUpEdit -
public class MyLookUpEdit : LookUpEdit
I refer to the following link to add MyLookUpEdit to a ribbon. Now MyLookUpEdit is…

spspli
- 3,128
- 11
- 48
- 75
0
votes
1 answer
DevExpress LookUpEdit Column Binding To Navigation Property
Good day!
I'm having an issue with the DevExpress LookUpEdit I can't figure out what the problem is.
I'm use Entity Framework list as a datasource.
public partial class provider_scheme : BaseEntity
{
public provider_scheme()
{
}
…

Uncle Ziie
- 1
- 3
0
votes
1 answer
With two comboboxes; How to load child item collections in second combobox based on the first combobox selected item
I'm working on a win project and I know this would be easy in WPF but I do not have the liberty to switch this project. I have to comboboxes, basically a Order ComboBox and an OrderItem ComboBox. I am using Entity Framework and I just wanted to find…

Donald N. Mafa
- 5,131
- 10
- 39
- 56
0
votes
1 answer
DevExpress GridView in LookUpEdit
I can add columns like this in GridView, but I don't know how to add RepositoryLookUpEdit. Would you help me with this topic? (I'm sorry for my bad English.)
DataTable DT = new DataTable();
private void Form1_Load(object sender, EventArgs e)
…

Emre Odabaş
- 11
- 1