TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Avinash Balasani
NA
1
788
I cant select options from autocomplete textbox
Nov 21 2014 6:37 AM
$('#txtmn').autocomplete({
source: '@Url.Action("GetMaterialNums")',
minLength: 1,
selectFirst:true
});
public JsonResult GetMaterialNums(string term)
{
List<string> Mnums;
Mnums = db.Server_SparesAdd.Where(x => x.MaterialNo.StartsWith(term)).Select(x => x.MaterialNo).ToList();
return Json(Mnums, JsonRequestBehavior.AllowGet);
}
Please give me any suggestions to solve this issue
Reply
Answers (
0
)
Jquery dialog shrinks when i open second time
retrieve image from Sql Server using Jquery or javascript