Skip to content

Commit aeb99db

Browse files
JS-58653 - Autocomplete code and image different is fixed and committed.
1 parent 5e0b53f commit aeb99db

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

aspnetmvc/Autocomplete/MultiColumn.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ The following steps explain the configuration of the Multiple Columns for an Aut
4949
5050
.MultiColumnSettings(obj => obj.Enable(true).Columns(obj1 =>
5151
{
52-
obj1.Field("uniqueKey").HeaderText("Unique Key").Add();
53-
obj1.Field("text").HeaderText("Text").Add();
54-
}).ShowHeader(true).SearchColumnIndices(new List<int> { 0,1,2,3 }).StringFormat("{0}"))
52+
obj1.Field("EmployeeID").HeaderText("EmployeeID").Add();
53+
obj1.Field("FirstName").HeaderText("FirstName").Add();
54+
obj1.Field("City").HeaderText("City").Add();
55+
}).ShowHeader(true).SearchColumnIndices(new List<int> { 0,1,2 }).StringFormat("{0}"))
5556

5657
</div>
5758

0 commit comments

Comments
 (0)