How to search DropdownList by Employee ID?How do I enumerate an enum in C#?How to handle checkboxes in ASP.NET MVC forms?How can I post an array of string to ASP.NET MVC Controller without a form?How do you create a dropdownlist from an enum in ASP.NET MVC?ASP.NET MVC - Set custom IIdentity or IPrincipalASP.NET MVC 3 - Partial vs Display Template vs Editor TemplateASP.NET MVC3: Issue on working with dropdownlistASP.NET Identity - HttpContext has no extension method for GetOwinContextWhy not inherit from List<T>?How do i make changes of one dropdownlist reflect on other dropdown list in asp.net?
How many Jimmys can fit?
What is the problem here?(all integers are irrational proof...i think so)
Distinguish the explanations of Galadriel's test in LotR
Would a Nikon FG 20 film SLR camera take pictures without batteries?
QR codes, do people use them?
Intern not wearing safety equipment; how could I have handled this differently?
How to evaluate the performance of open source solver?
Is it possible to complete a PhD in CS in 3 years?
Number of states in taxi environment (Dietterich 2000)
First Entry Member State schengen visa
Hail hit my roof. Do I need to replace it?
Four ships at the ocean with the same distance
What would +1/+2/+3 items be called in game?
How does one acquire an undead eyeball encased in a gem?
Why was such an unrevealing title originally chosen and then changed for some International markets?
Reference request: quantifier elimination test
What does the multimeter dial do internally?
Swapping "Good" and "Bad"
Generalized Behrend version for Grothendieck-Lefschetz trace formula
Was it ever illegal to name a pig "Napoleon" in France?
What's it called when the bad guy gets eaten?
Correct notation for guitar fingerstyle
Moving millions of files to a different directory with specfic name patterns
Is it okay to use open source code to do an interview task?
How to search DropdownList by Employee ID?
How do I enumerate an enum in C#?How to handle checkboxes in ASP.NET MVC forms?How can I post an array of string to ASP.NET MVC Controller without a form?How do you create a dropdownlist from an enum in ASP.NET MVC?ASP.NET MVC - Set custom IIdentity or IPrincipalASP.NET MVC 3 - Partial vs Display Template vs Editor TemplateASP.NET MVC3: Issue on working with dropdownlistASP.NET Identity - HttpContext has no extension method for GetOwinContextWhy not inherit from List<T>?How do i make changes of one dropdownlist reflect on other dropdown list in asp.net?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Working on ASP.net MVC 5 project.
I have a DropdownList of employees names.
I need to add a search input field, so the user can search employees by entering Employee ID.
I can see the solution as the following, but not sure how to implement it:
- store entered Employee ID in variable EmpID
- store list of employees with their IDs in an array of objects or object of array EmpNamesIDsList
- Loop through EmpNamesIDsList, and check if EmpID equals ID of any employee
If yes, select item in DropdownList
Is this right? or is there a better way to do it?
c# asp.net-mvc dropdownlistfor
add a comment |
Working on ASP.net MVC 5 project.
I have a DropdownList of employees names.
I need to add a search input field, so the user can search employees by entering Employee ID.
I can see the solution as the following, but not sure how to implement it:
- store entered Employee ID in variable EmpID
- store list of employees with their IDs in an array of objects or object of array EmpNamesIDsList
- Loop through EmpNamesIDsList, and check if EmpID equals ID of any employee
If yes, select item in DropdownList
Is this right? or is there a better way to do it?
c# asp.net-mvc dropdownlistfor
1
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25
add a comment |
Working on ASP.net MVC 5 project.
I have a DropdownList of employees names.
I need to add a search input field, so the user can search employees by entering Employee ID.
I can see the solution as the following, but not sure how to implement it:
- store entered Employee ID in variable EmpID
- store list of employees with their IDs in an array of objects or object of array EmpNamesIDsList
- Loop through EmpNamesIDsList, and check if EmpID equals ID of any employee
If yes, select item in DropdownList
Is this right? or is there a better way to do it?
c# asp.net-mvc dropdownlistfor
Working on ASP.net MVC 5 project.
I have a DropdownList of employees names.
I need to add a search input field, so the user can search employees by entering Employee ID.
I can see the solution as the following, but not sure how to implement it:
- store entered Employee ID in variable EmpID
- store list of employees with their IDs in an array of objects or object of array EmpNamesIDsList
- Loop through EmpNamesIDsList, and check if EmpID equals ID of any employee
If yes, select item in DropdownList
Is this right? or is there a better way to do it?
c# asp.net-mvc dropdownlistfor
c# asp.net-mvc dropdownlistfor
asked Mar 25 at 23:25
Dixie FlyerDixie Flyer
61 silver badge1 bronze badge
61 silver badge1 bronze badge
1
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25
add a comment |
1
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25
1
1
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25
add a comment |
1 Answer
1
active
oldest
votes
I'm not sure if I got your point. But you can add a string that combines EmployeeFullName with ID. After that you can search in your dropdownlist either by FullName or ID.
Small example
public class Employee
public int Id get;set;
public string FullName get;set;
public string NameAndIdCombined => $"FullName - ID: Id.ToString()"
So that you can use a Select2(or similar) dropdownlist which you can search.
new SelectList(employees, "Id","NameAndIdCombined)
Hope I got your question right and hope it helps.
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347808%2fhow-to-search-dropdownlist-by-employee-id%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm not sure if I got your point. But you can add a string that combines EmployeeFullName with ID. After that you can search in your dropdownlist either by FullName or ID.
Small example
public class Employee
public int Id get;set;
public string FullName get;set;
public string NameAndIdCombined => $"FullName - ID: Id.ToString()"
So that you can use a Select2(or similar) dropdownlist which you can search.
new SelectList(employees, "Id","NameAndIdCombined)
Hope I got your question right and hope it helps.
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
add a comment |
I'm not sure if I got your point. But you can add a string that combines EmployeeFullName with ID. After that you can search in your dropdownlist either by FullName or ID.
Small example
public class Employee
public int Id get;set;
public string FullName get;set;
public string NameAndIdCombined => $"FullName - ID: Id.ToString()"
So that you can use a Select2(or similar) dropdownlist which you can search.
new SelectList(employees, "Id","NameAndIdCombined)
Hope I got your question right and hope it helps.
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
add a comment |
I'm not sure if I got your point. But you can add a string that combines EmployeeFullName with ID. After that you can search in your dropdownlist either by FullName or ID.
Small example
public class Employee
public int Id get;set;
public string FullName get;set;
public string NameAndIdCombined => $"FullName - ID: Id.ToString()"
So that you can use a Select2(or similar) dropdownlist which you can search.
new SelectList(employees, "Id","NameAndIdCombined)
Hope I got your question right and hope it helps.
I'm not sure if I got your point. But you can add a string that combines EmployeeFullName with ID. After that you can search in your dropdownlist either by FullName or ID.
Small example
public class Employee
public int Id get;set;
public string FullName get;set;
public string NameAndIdCombined => $"FullName - ID: Id.ToString()"
So that you can use a Select2(or similar) dropdownlist which you can search.
new SelectList(employees, "Id","NameAndIdCombined)
Hope I got your question right and hope it helps.
answered Mar 26 at 22:24
PumpkinPumpkin
12 bronze badges
12 bronze badges
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
add a comment |
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
thank you @Pumpkin. I'll try it and give you more accurate feedback
– Dixie Flyer
Mar 28 at 23:18
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347808%2fhow-to-search-dropdownlist-by-employee-id%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Do you search employees on server side or just from dropdowlist items?
– Siamak Ferdos
Mar 25 at 23:44
@SiamakFerdos I need to query Employees IDs of the employees enlisted in dropdownlist from database, so I'm thinking to do it in controller C#. What do you think?
– Dixie Flyer
Mar 26 at 16:25