All Questions
Tagged with jquery-plugins asp.net
244 questions
2
votes
1
answer
5k
views
Why my jquery multiselect plugin not working
I´m developing a school project using jquery multiselect plugin but the plugin isn't working fine.
Thats my code where i create the multiselect menu.
@using nsaprojeto.Controllers
@model dadosPassar
@...
0
votes
1
answer
1k
views
Lazy loading in Light Gallery
I'm using lightgallery.js (https://sachinchoolur.github.io/lightgallery.js) to develop my ASP.NET MVC project.
It seems ok to load some images which have a size of less than 1MB, but the problem here ...
2
votes
0
answers
691
views
jquery.inputmask.js not returning unmasked value
I'm using the 5.0.2 version of jquery.inputmask.js on an asp.net MVC project. I have a simple input text field called "Cellphone" that comes with the user's phone number already filled, loaded from ...
0
votes
1
answer
2k
views
How to move cursor at first character positon using jquery mask plugin?
I have searched a lot and found out same kind of question but not exactly same and didn't find satisfactory answer. So thought, Should ask that more specific.
Using Jquery mask plugin, I would like my ...
0
votes
0
answers
189
views
How can i call jQuery-plugin function from aspx page by creating object?
I have created a jQuery plugin and I can able to use that in document.ready function and javascript functions also (in pure HTML page).
Now I want to call that functions in ajax call success function ...
-1
votes
1
answer
1k
views
How do I use a jQuery libary in ASP.NET Core?
I am developing a website using ASP.NET Core 2.2, and mainly with razor pages.
I am trying to make a tree table and found a jQuery plugin that suits perfectly but I am unsure of how to use it in a ...
0
votes
1
answer
2k
views
Save multiple html tables on a page as CSV
I have a page on which I have multiple html tables. I want to download all the tables into one CSV or Excel file using JS or JQuery..I searched for it and found some jQuery plugins which do that
...
0
votes
0
answers
230
views
jQuery unobtrusive validation min - max or zero
I have a form with 6 text fields. The validation is standard for 4 of them, with just and min / max value. However, for 2 of the fields, the value of a text field can be either 0 or between 2 values.
...
0
votes
3
answers
2k
views
DataTable not rendring Gridview after button click event
In my page when it's creating, everything is working fine but when I am clicking on the button to show the selected row, then my grid view is not rendering as a datatable. What I need to do to fix ...
0
votes
1
answer
27
views
How to keep jQuery plugin after an ASP callback?
I'm using the tipsy jQuery plugin on an ASP page.
I activate it at page load in my master page:
if (jQuery.fn.tipsy) {
$('.north').tipsy({ gravity: 'n', fade: true });
$('.south').tipsy({ ...
0
votes
2
answers
527
views
Empty Jquery Datatable
I have created a controller with ActionResult Index and created a list of Student class as:
public ActionResult Index()
{
var list = new List<Student>()
{
new Student{Id=1,RegNo=...
1
vote
1
answer
342
views
asp.net web page, getting jQuery Accordion plugin to work with asp:Repeater control
I'm working on a asp.net project. I've been asked to create a page so site admins could add articles and everyone else could add comments under those articles.
I have 2 separate tables in my db, ...
1
vote
2
answers
1k
views
Default show Mutilple selected options in Select control using Bootstrap Select
I have created a multi selection select control using Bootstrap select.
By default I need to show dynamically selected items. When I make selected in option ALL selection (<option value="All" ...
1
vote
2
answers
4k
views
ASP.Net Webforms GridView with jQuery DataTables and Server Side data loading
I want to use jquery Datatables plugin with ASP.Net GridView in a web forms project. I have gone through this link and have successfully managed to display the data in the grid along with other ...
1
vote
1
answer
375
views
How to use ajaxUserCall function in Jquery Validation Plugin
I am try to use Jquery Validation Plugin in asp.net(C#) application with webservice
[https://jqueryvalidation.org/]
There is a custom ajax method called ajaxUserCall but i have no idea on how to use ...