All Questions
500 questions
0
votes
1
answer
95
views
When updating Nuget package in asp.net project
I need to update a couple of MS NuGet packages in asp.net project which was developed using Visual Studio. The ones I'm updating are
Microsoft.AspNet.Identity.EntityFramework
Microsoft.CodeDom....
0
votes
0
answers
174
views
ASP.net MVC: JQuery DataTable Styling problem with bootstrap
i use JQuery DataTable plugin in a Asp.net MVC Project. JQuery, DataTable and Bootstrap are installed by Nugets. Adding the reference jquery.dataTables.min.css to the Layout make a styling troubles ...
0
votes
1
answer
86
views
How can the number of pages be limited in bootstrps 5
I have the following code that puts the number of pages, but the problem is that if the number of pages is many, it will expand to the end of the page. Is it possible to make the number of pages only ...
2
votes
0
answers
55
views
How to get access to whole razor object of chosen element of drop down list at cshtml file through jQuery?
Sorry, I guess question's title little bit confused, I will try to explain properly down below.
I have a model User:
public class User
{
public int Id { get; set; }
public string Name { get; set;...
0
votes
1
answer
1k
views
Boostrap filter table control isn't working even with CDN on ASP.NET CORE MVC
I wanna be able to filter a column in a table using bootstrap, this is my code:
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/...
0
votes
0
answers
149
views
Jquery bootstrap multiselect Issue - duplicating the dropdown
I am using the jquery and bootstrap plugin in asp.net mvc.
The issue is that the dropdown with checkboxes is rendering separately from the normal dropdown.
@Html.ListBoxFor(m => Model....
1
vote
2
answers
18k
views
How to Create MultiSelect dropdown with checkboxes in Asp.NET MVC
I would like to use the asp.net mvc multiselect dropdown with checkbox.
How can I add checkboxes in the simplest way ?
I am using bootstrap v3
@Html.ListBoxFor(m => Model.DepDashTaskLists[i]....
0
votes
2
answers
274
views
asp.net mvc open the view in the read-only/disabled mode
I have a asp.net mvc page which uses bootstrap and I need the page to open in the read only form
and not to be able to edit the complete page.
One of doing it I know is using the jquery prop function ...
0
votes
1
answer
2k
views
Bootstrap multiselect not working with knockout binding
I am using this plugin for implementing a multi-select dropdown with checkboxes using KnockoutJs in an ASP.NET MVC web application. I have followed the code in this jsfiddle, but the drop-down is not ...
0
votes
1
answer
116
views
ASP.NET MVC is throwing error "jQuery tDatePicker is not a function" in the console (Browser Developer Tools) when loading a view
I am using an old version of Telerik for ASP.NET MVC.
When loading an ASP.NET MVC view I have seen in console (Developer Tools) that below error is thrown:
jQuery tDatePicker is not a function
...
0
votes
2
answers
5k
views
How to create a searchable drop down?
I have a very long list of values that I would like to be selected with a drop-down menu with the ability to search items by typing the value as text. For instance, something similar to the search box ...
0
votes
0
answers
286
views
Is there a way to highlight all text in a bootstrap input field that is using a data input mask on focus?
I'm using bootstrap 3 and have some input fields that are using a date validation data input mask mask.
If I fill out those date fields, deselect them, then tab back to the fields, the cursor on the ...
0
votes
3
answers
359
views
The event in jquery popup is triggered more than once
I am working on a survey application using Asp.net MVc. My events in jquery popup are triggered more than once. The more a popup is opened, the more it triggers in the event in the popup. What is the ...
0
votes
0
answers
226
views
What is te best practice of both client and server side validation in asp.net mvc and bootstrap v4?
I am working on a survey application with Asp.Net MVC.
I have a page named Index.cshtml which has a question table and a 'Add New' button. Once button clicked, a popup is opened with jQuery. I am ...
0
votes
0
answers
95
views
Change default asp.net mvc5 validation messages
This is my model's date property:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy.mm.dd}")]
[Required(ErrorMessage = "You need to fill this")]
[DataType(DataType.DateTime, ...