All Questions
173 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
@...
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
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
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({ ...
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 ...
0
votes
0
answers
446
views
RequiredFieldValidator not working with jQuery Plugins
I am using a theme on a ASP.Net Webforms project that contains and loads bootstrap/jQuery 1.11 / jQuery UI libraries on the master page. I am using different plugins like jQuery Datatables & ...
1
vote
2
answers
91
views
Onclick of submit button are not displayed values of labels
I have 2 textboxes 1 button and 2 labels, On click of button value of textbox1 is not displayed at label3 and value of textbox2 is not displayed at label2
I am using Verify.js to validate textboxes.
...
1
vote
1
answer
100
views
AreYouSure jquery plugin does not show error message if partial postback happens
We have a page with all the controls inside a Update Panel. If any data changes inside the form and user tries to leave the page without saving then he gets a warning message.
There is a DropDownList ...
1
vote
0
answers
237
views
Why textboxes loses its masking capability on postback?
I have applied jquery function for masking text boxes in asp.net. It works fine until I post back. On postback it loses its masking capability. Why ?
<script src="../assets/global/plugins/...
0
votes
5
answers
108
views
Why does jQuery Datepicker fail to change dateformat?
All:
Here are the jquery versions that I'm using:
jquery 2.1.4
jquery-UI 1.11.2
In my ASPX web page, I have the following:
Start Date: <input type="text" id="startdate" size="30"/>
...
1
vote
3
answers
11k
views
Jquery-Steps plug in not working?
I came across this amazing plugin http://www.jquery-steps.com/Examples
I am have been trying to make it work but it seems I am missing something.
I have added the reference to the file :
<script ...
1
vote
1
answer
596
views
Check a radiobutton onload and expand the treeview accordingly using jquery
I have a treeview which is implemented using jquery Treeview version 1.4. TreeView is Implemented as below
<div id="container">
<ul id="outerlist">
<li>
<span&...