All Questions
234 questions
1
vote
1
answer
70
views
Passing entity model data into Bootstrap Modal
I'm trying to pass data to a modal. After searching around the internet and following bootstrap I found a couple of ways. 1) is by passing the model through data-bs-whatever="@Model", ...
0
votes
0
answers
45
views
Bootstrap dropdown not working when blazor app is published [duplicate]
I have a blazor server-side app and I have the following component:
<div class="card-tools">
<div class="btn-group text-right">
<button type="button&...
0
votes
2
answers
3k
views
Problem getting modal to display from GridView event
Before anyone says it, I have tried all of the examples I can find, and nothing seems to work so far, so that's why I'm posting a new question.
I am working on an ASP.NET web forms project, and I have ...
1
vote
1
answer
326
views
Convert html select dropdown to single button Nav bar
I have requirement for dynamic menu Navbar output like below with this design.
But now i am getting like below
I am getting dynamic menu data from database below is my code
<select id="...
1
vote
1
answer
129
views
Using bootstrap 3 popover inside table not showing on top of button
Need popover to show users list but its not showing on the top of button.
Here is the jQuery Code:
$('[data-toggle="popover"]').popover();
Here is C# Code for dynamic buttons inside table ...
0
votes
1
answer
34
views
Open Jquery-UI Dialog Box inside table not showing in right place?
Here is the jQuery Code to Show the Dialog Box Dynamically.
function ShowDialog(id) {
var x = $('btn_' + id).position();
$("#dialog_" + id).dialog({
title: &...
1
vote
1
answer
10k
views
How do I pass data to modal view in ASP.NET MVC
I am having problems passing data to modal view. Either modal view doesn't open at all or reads data from first item every time I open it.
The biggest problem I have is that I don't know jQuery.
I ...
0
votes
1
answer
888
views
Select Bootstrap Search Event
i have a bit problem with a select search of bootstrap, i need get the value of the search.
<div class="form-group has-feedback has-feedback-left">
<select class="form-...
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, ...
2
votes
3
answers
2k
views
uncaught error bootstrap requires jquery at bootstrap.min.js
I am getting this error even when all the jquery has been loaded before bootstrap and also have used the version 1.9.1
tried using jquery version 1.9.1 and it still dint solve
<script type="...
0
votes
0
answers
396
views
Bootstrap Modal popup not showing up first time
While I first click this #btnRequestedProviderSelect button, bootstrap modal is not showing popup. But I second click it will come why?
$("#btnRequestedProviderSelect").click(function () {
$("#...
0
votes
0
answers
668
views
Javascript runtime error unrecognized expression # in jquery.min.js
I am developing a C# / ASP.NET web application in Visual Studio 2015 and I'm using a Boostrap Nav bar for the menu. Everything was working fine until recently when the menu stopped working. I have all ...
0
votes
1
answer
1k
views
How to select data for @Html.DropDownListFor (selectpicker class) when @Html.DropDownList is updated, by jQuery?
I'm developing web application by ASP.NET-MVC.
Model:
public partial class MyModel
{
public string TEST { get; set; }
}
Html:
@model IList<MyModel>
@Html.DropDownList("...
0
votes
1
answer
411
views
How to disable a list item based on condition - ASP.NET C#
I am looking for some advice on the best way to disable two list items based on the account being locked and the value in the state column is equal to 1.
I have a model which generates a random ...
0
votes
1
answer
159
views
MVCGrid.net Table Fixed Header
Is there any possibility to use a fixed header in MVCGrid table? I tries many solutions, and non of them works well. When in table are many columns, and user scroll these data to left side - header ...