Please share the following and some more information to find the cause of the issue and provide a prompt solution
1. Are you using foreign key column?
2. Do you want to save dropdown text value while editing?
3. Attach a screenshot of the issue.
4. Do you want to filter the dropdown column based on text value?
5. A sample if possible, or a sample hosted link.
6. Client and server side codes of the sample.
Regards,
Jayaprakash K.
<ej:Grid ID="Grid1" AllowSorting="true" AllowPaging="True" AllowFiltering="True" AllowMultiSorting="false" runat="server"> <Columns> <ej:Column Field="OrderID" HeaderText="Order ID" IsPrimaryKey="true" TextAlign="Right" Width="90" /> <ej:Column Field="CustomerID" HeaderText="Customer ID" Width="100" /> <ej:Column Field="EmployeeID" HeaderText="Employee ID" ForeignKeyField="value" ForeignKeyValue="text" EditType="Dropdown" TextAlign="Right" Width="110" /> <ej:Column Field="Freight" HeaderText="Freight" TextAlign="Right" Width="90" Format="{0:C}" /> <ej:Column Field="OrderDate" HeaderText="Order Date" Width="100" TextAlign="Right" Format="{0:MM/dd/yyyy}" /> <ej:Column Field="ShipCity" HeaderText="Ship City" Width="100" /> </Columns> <PageSettings PageSize="15" /> <EditSettings AllowEditing="True" AllowAdding="True" AllowDeleting="True"></EditSettings> <ToolbarSettings ShowToolbar="True" ToolbarItems="add,edit,delete,update,cancel"></ToolbarSettings> <FilterSettings FilterType="Menu"></FilterSettings> </ej:Grid> |