Tagged Questions
0
votes
0answers
8 views
ASp.Net Chart with string values on X and Y axis
I have using asp.net chart in my application. Here, I would like to display StackedBar chart with the value of x-axis and y-axis. Note that here, value on both axis would be string. Value may be like ...
0
votes
2answers
21 views
AJAX and Jquery prevent page load on click of button
I have a gridview where in i load all of the transaction a merchant have (it either e pending transaction, Approved transaction or Rejected Transaction)..My gridview is using template and i have two ...
-1
votes
0answers
19 views
Datepicker does not insert a date
I've run into a tricky problem it seems. I've got two input text fields that i've turned into datepickers. However when i pick a date the date does not transfer into the textfield. The calendar shows ...
2
votes
0answers
13 views
ASP.Net MVC C# with Toastr not minifing javascript
I'm using ASP.Net MVC 4 - and attempting to use Toastr too.
I installed it via NuGet - and it works in development, however, when I publish, my Javascript "bundle" reports:
/* Minification failed. ...
1
vote
2answers
30 views
ASP.NET MVC 4 - Dynamically Creating Table Using Javascript and C# Array Data
For my project, I would like to dynamically display a table containing information from my database. Unfortunately, I am unable to pass the c# array containing all of my database's information into a ...
0
votes
1answer
21 views
What are the fewest jquery-ui css files I need to reference to use the Tabs widget?
I'm confused about just which jquery css files I need to reference in my asp.net site. Should I use just "jquery.ui..css" (such as "jquery.ui.tabs.css") if only uisng one jQuery-UI widget (as opposed ...
0
votes
0answers
12 views
Trigger Pane header click behavior on check box inside ajaxToolkit Accordion page
I am using ajaxToolkit:Accordion control for which all panes are being dynamically generated from code behind. Along with the Pane Content I am supposed to add Checkbox into each pane.
Using JQuery I ...
-3
votes
1answer
20 views
Lose control of Fancybox when child button is clicked [closed]
I have a parent aspx page that has dababse information. To make edits you click a link that opens the child page in a fancybox iframe. The child page holds some textbox and a submit button. When a ...
0
votes
2answers
20 views
Asp .Net with jquery document ready event
I am using jquery with asp .net. I have some javascript code in some custom controls that I want to execute when the documents loads.
To execute the code I use this snippet:
...
0
votes
1answer
40 views
The values in the model dont pass to controller
I am uploading file using jquery and passing three parameters to controller. I can pass 1 of the parameter and other 2 parameters are selected from dropbox. 2 parameters from the drop box does not ...
0
votes
1answer
12 views
jquery select2 work with dropdownlist asp.net server control
I am trying to use it with asp.net server run dropdownlist.
When asp.net control is rendered on the page it has different id something such as: "ctl00_ContentPlaceHolder1_ddlAgentName" although the ...
0
votes
0answers
58 views
I have to escape % but all online example does not
For some reason in my Visual Studio 2012 when I try to get an server tag using jquery I have to escape the % like this and it causes my code to not work.
$('#<\%= myInput.ClientID ...
-2
votes
1answer
30 views
Data stores in JavaScript or Jquery?
I am developing a site which retrieve few lists (like country, product, industry) from share point using a soap call, and load the drop-downs. Later there are few filtration and reload of country ...
1
vote
1answer
71 views
Disable parent window when child popup window is open
I have an aspx page that pops up in a child window. Is there a way to make the parent window non-accessible until the popup child window is closed?
For the record, I'm using the following jQuery code ...
0
votes
0answers
13 views
jQuery / MVC - Limit scope of .ajaxStop()?
I have a couple of AJAX calls that get fired in a full view, but one of them is in a partial view.
Previously to this setup, the full view only had a single AJAX call, making .ajaxStop() a breeze to ...