Tagged Questions
0
votes
5answers
20 views
Uncheck asp.net checkboxlist values using javascript or jquery
I have an asp.net checkbox list and the values of checkboxlist are binded from database. my requirement is to uncheck the checkboxes on a button click. Can someone please suggest me a way on how to ...
0
votes
0answers
18 views
Unable to add dynamically an AJAX enabled control
I am developing a website where there is a treeview on the master page. When a user clicks on a node on the tree I want to dynamically load a user control and place it in the content page.
Here is ...
0
votes
0answers
24 views
Dealing with a collection of autocompleted database searches from a text box
So far I have the following code which an AJAX autocomplete
asp.net
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC ...
0
votes
0answers
25 views
asp.net jquery build table using response.write()
I have jquery table Table: Column Toggle except I removed the column selection by removeing data-mode="columntoggle"
I had datatable populated, and a button on the form.
What I want to do is ...
-2
votes
1answer
47 views
Change button style
I have three buttons and three panels.i click button panel1 only load at the time,panel2 and 3 are invisible.if i click button2 panel2 load,panel1 and 3 are invisible.i want to change my button style ...
-4
votes
3answers
34 views
A drop down menu with checkbox
I'm trying to make a drop down menu with checkbox like this :
Before click :
After click :
Do you have an idea please (it's an ASP.NET project and I'm using some jquery script)
Thanks
1
vote
1answer
43 views
MVC Dynamic content onchange of dropdownlist
I have a question on how to achieve the following:
I have a dropdownlist with activities and I want on the onchange event of an activity, that my list would be fetched with the id that is set in my ...
1
vote
1answer
78 views
ASP.NET, CSS and jQuery
I have this aspx page:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Some Title</title>
<link href="css/home.css" ...
0
votes
1answer
27 views
jquery fullcalendar with colored events
I'm new in query and I have a problem with fullcalendar (http://arshaw.com/fullcalendar/). I want to color events depending on their types.
js:
$(document).ready(function () {
...
0
votes
0answers
16 views
DataTable-FixedHeader on ASP.Net Repeater throws errors after async postback
I use the FixedHeader-function (http://datatables.net/extras/fixedcolumns/) from DataTables (http://datatables.net/) on an ASP Repeater.
The repeater/table is not visible when the page is loaded, the ...
2
votes
1answer
30 views
What is limit of data that can be passed with jQuery ajax GET request
This is the cross-domain request to the REST service:
$.ajax({
type: "GET",
dataType: "jsonp",
contentType: "application/javascript",
...
0
votes
1answer
29 views
JQuery getJSON() not working when checking email
I have a registration page which checks another webmethod to see if the particular value exists in the DB.
For the email validation, I have
//Checks the email against the database.
...
0
votes
1answer
22 views
Update a Gridview from a JQuery Slider
I am trying to use a JQuery UI Slider to update a gridview in Visual Studio. Can someone tell me how to use postback or some other function to achieve this. Thanks for your time.
JQuery UI Slider
...
0
votes
3answers
52 views
jQuery $.ajax method displays error status
the webservice looks like
using System;<br/>
using System.Collections.Generic;<br/>
using System.Linq;<br/>
using System.Web;<br/>
using System.Web.Services;<br/>
...
1
vote
2answers
60 views
jQuery slide up/down effect not working on div
Developing ASP.NET Web Forms application using VS 2010 & have a login textbox and password textbox on a page.
Above those I have a simple div tag which will contain the error message if the login ...
0
votes
0answers
18 views
disable jquery blockUI in timer1_tick
I have a masterpage with with a function that returns current date and time, my problem is that everytime my timer ticks, blockUI is being called.. is there a way i can disable it in a particular ...
0
votes
2answers
35 views
Jquery file inclusion issue
Developing ASP.NET application with visual studio 2010
I am new with jquery.
I am trying to include JQuery file online (from google)
For this i have written it as:
<script ...
1
vote
2answers
36 views
jQuery ajax POST error for wcf sevice
This is cross-domain ajax request:
$.ajax({
type: "POST",
dataType: "jsonp",
contentType: "application/jsonp",
data: ...
1
vote
0answers
30 views
ASP.Net MVC jQuery and plugins loaded in wrong order
I'm using ASP.Net MVC and attempting to use the TinyMCE HTML editor.
I added this from NuGet - however, it adds an EditorTemplate (Shared -> EditorTemplates -> tinymce_jquery_full.cshtml), ...
0
votes
1answer
26 views
Javascript and ASP MVC - refreshing an image
I have a page that contains a captcha. whenever the user enters the captcha incorrectly the form will submit and they will move on. If not, i want to refresh the captcha image so that the user has ...
0
votes
0answers
25 views
JSON string requested using AJAX from WCF service missing .d and __type attributes
I am using jQuery AJAX to call a WCF service. The service retuns a JSON string that represents an instance of a custom object.
What I'm writing is meant to replace some current functionality in an ...
0
votes
1answer
46 views
ASP.NET fade textbox text when user clicks
I'm developing an ASP.NET (VS2012, .NET 4) web app, and I'm going to create some effects for my text box like this site:
http://behnoush.iitco.ir/site/fa/Poll.html
as you can see, when user clicks ...
0
votes
1answer
51 views
call server side method using ajax in asp.net
I am trying to insert data into database by using jquery dialog form.
Here's my jquery:
$(function () {
$("#dialogregister").dialog({
autoOpen: false,
width: 800,
height: 450,
...
0
votes
1answer
46 views
Knockout with jQuery tmpl rendering unparsed templates
I referenced the jQuery tmpl like this:
<script src="../../Scripts/jQuery.tmpl.js" type="text/javascript"></script>
Furthermore, I referenced KnockoutJS like this:
<script ...
-4
votes
1answer
62 views
when page load button click
I have 3 buttons and 3 panels. When I click the first button, panel 1 loads but panel2 and 3 are invisible, but 3 buttons always visible. When I click the button corresponding panel only loads and the ...
0
votes
2answers
33 views
pass json data to aspx webmethod page error: “System.Collections.Generic.IDictionary`2 is not supported for deserialization of an array”
I Want Pass json Object to WebMethod in aspx page
here's my jquery and WebMethod
$("#button-login").bind({
Click: accountRegister
});
function accountRegister(e) {
var dataObj = ...
0
votes
0answers
26 views
jQuery validation using remote method #ASP.NET (FIXED)
I'm using jQuery validation plugin to validate my client email address if its already exist in the system. This method will call a generic handler page to validate the email address.
jQuery
...
0
votes
1answer
13 views
Adding a plugin to a partialview selectlist in MVC ASP.Net
I have a jQuery function which loads a partialview into the HTML in a DIV:
function getRequest(url) {
$.ajax({
url: url,
context: document.body,
success: function (data) {
...
0
votes
4answers
47 views
How to handle enter event of multiple text boxes which invoke input button clicks event?
I have 3 asp.net text box and an html input botton, when enter is pressed in any of the above text boxes input button click event must be fired.My code is
<li class="right2">
...
0
votes
0answers
36 views
update floating div position after elements hidden
I am working on a web application and have created a floating Div using jquery that follows the user down the page as they scroll. This is is my first step into jquery and i like what i see.
The ...
0
votes
0answers
25 views
Parsing ISO 8601 dates
This might sound simple, but I am having a really difficult time to find a solution to.. I have a simple ajax call that returns a JSON object:
...
0
votes
0answers
14 views
Custom dynatree tooltip
I use dynatree.I want customize tooltip for nodes like jquery tooltip and when click on node then show tooltip.
How do it?
-5
votes
1answer
41 views
what is '.tipN' sign in knockout js? [closed]
var InitTipsy = function () { $('.tipN').tipsy({ gravity: 'n', fade: true });}
What is the meaning of '.sign'?
-1
votes
1answer
51 views
what is $(“#”) sign in knockout js?
what is the meaning of $ and # sign in knockout
sample code is here:
var landropdown = $("#language").data("kendoDropDownList");
if (landropdown != undefined)
...
-3
votes
0answers
38 views
How to design a JQuery tree [closed]
I want to design a Tree structure for Multi Level Marketing.
I am working with ASP.NET,
can you help me with some link or code to perform the task
This tree should looks like an Organization Chart.
I ...
0
votes
1answer
23 views
Parsing json Array Ajax Return Data
Can somebody explain me how do i parse this Ajax response in jQuery
{"d":{"__type":"ListUsers+returnData","Type":"Success","Message":"User Added successfully."}}
I am using same return types for ...
1
vote
1answer
35 views
Jquery asp.net error
i just cant figure why it makes this error. when i run the below codes. the jquery function works but the text revert back to what it was before clicking.please help.
<%@ Page Title="" ...
1
vote
2answers
62 views
how to retrieve post request parameter of jquery in aspx page
i am working on a project in c#.net , I have a jquery code in my master page and the master page is included in my home page. I have created hyperlinks dynamically in my home page.
i want that when ...
0
votes
1answer
34 views
sending $.post to .aspx using jQuery
I started the jQuery tutorial made by phpAcademy on thenewboston youtube channel.
I reached the part where I have to create an email validation form BUT, I am not using PHP, I am using ASP.net for ...
0
votes
2answers
32 views
Displaying an optional input field triggered by a radio button
As you can see here, I have a bulleted list. The last option on that list is "Other". When Other is selected, I want the "If Other, please describe here:" element and respective input box to be ...
0
votes
0answers
17 views
JQTE Jquery text editor issue [duplicate]
I want to run the jQuery Text Editor on the following aspx page. but I tried for hours with any success. Getting the error Uncaught TypeError: Object #<Object> has no method 'jqte'. I have ...
0
votes
0answers
22 views
Datatable JQuery don`t Paginate
the table get data correctly but the filtration and paging dont work and the search display but dont work , what should i do please help
function intialtize_damage_Grid_two(dtData) {
...
0
votes
0answers
57 views
Jquery Text editor issue
The following the code of the page where I want to use Jquery Text Editor (jqte). However, after much trying nothing seems to be working. I have included the required files in the same folder as the ...
2
votes
0answers
44 views
A script on this page may be busy, or it may have stopped responding. Asp.net
I have a page which gives me this error in Firefox:
A script on this page may be busy, or it may have stopped responding.
You can stop the script now, or you can continue to see if the script
...
0
votes
1answer
40 views
How to do skip and take functions in javascript for Json array
I want to do that in javascript:
for (int i = 0; i <= pieces; i++)
{
List<product> piecesProuducts = productList.Skip(i * 2).Take(2).ToList();
}
I have a json ...
0
votes
0answers
36 views
Using JQuery to change CSS in the master page works, but then reverts back to the default value
This is how I have my HTML setup.
<ul id="nav" class="nav">
<li id="home"><a href="/Default.aspx">Home</a></li>
<li id="ocr"><a ...
0
votes
1answer
18 views
User Control's dropdownlist select from added page with javascript
i want user control's dropdownlist selected item from page. when i try to get dropdownlist id it doesn't return correct id. Have you any idea about what i can get dropdownlist id?
var e = ...
1
vote
3answers
21 views
calling slideToggle jquery from codebehind
I am using a jquery to slide a div "slidingDiv" when an anchor "show_hide" is clicked. I am wondering if i can show the div open when the page is loaded. Because i have textboxes in the div and want ...
0
votes
0answers
23 views
supersized plugin: pull images from a database using asp.net
Am using supersized plugin but there images are hard-stuffed within the jquery code :
jQuery(function ($) {
$.supersized({
// Functionality
slide_interval: 3000, // Length ...
0
votes
1answer
31 views
After loading local page in Jquery dialog the parent window loads the same local page
My site is written in C# with ASP.NET, all pages being loaded are .aspx pages.
I'm using a button
<input type="button" onclick="FindBuilding()">
to trigger a javascript function
function ...




