Tagged Questions
0
votes
0answers
12 views
JAlerts is being displayed without boarder and layout
I am working on an asp.net mvc web application , and I need to use the JAlerts mentioned in this link:-
http://www.smooka.com/blog/2009/02/22/jalert-jquery-alert-box-plugin/
I have included the ...
0
votes
0answers
28 views
Setting Min and Max Time in TimePicker
I am using Jquery TimePicker slider which set the value on slider for displaying the Time in Hr and Mins.But I want to set the Min and Max Time in TimePicker but not able to do so.
here my code goes ...
0
votes
0answers
13 views
How to create ASP.net MVC Tabbed Wizard interface application?
I am creating an asp.net mvc application working as something like Tabbed wizard interface, basically, there are many tabs in the razor view, first tab collect user basic data wth validation, ...
0
votes
1answer
153 views
How to add jQueryUI library in MVC 5 project?
I've just installed Visual Studio 2013 and started new MVC 5 project. I'm kind of new in MVC developing and I can't figure out how to add libraries in my project.
I see some similar parts. For ...
0
votes
1answer
313 views
Rendering ASP.NET MVC partial view in a jQuery UI dialog causes an attempt to open prior to initialization
I am using jQuery UI to render an ASP.NET MVC 5 partial view into an empty div:
$(document).ready(function () {
$(".SiteName").on("click", function (event) {
event.preventDefault();
...
0
votes
0answers
37 views
User Interface Control(s) for Matching Items from two lists
Our team is documenting how data flows in our systems.
We have a hierarchy of Server, Database, Table, Field. Each entity in the hierarchy is its own table with appropriate keys connecting to the ...
0
votes
1answer
55 views
asp.net mvc CheckBox custom component
I'm working with VS2010 with ASP.net MVC4
I need to create a component with checkbox in this case the component must be integrated with three checkbox, in the image that should be attached as the ...
1
vote
1answer
1k views
MVC 4 Razor and Jquery UI datepicker() “Object doesn't support property or method”
I've probably just spent the last two hours trying to figure this out.
The specific error that is thrown with my MVC application is this:
"0x800a01b6 - JavaScript runtime error: Object doesn't ...
2
votes
1answer
206 views
MVC Editor Templates for Date Ranges using JQuery UI DatePicker
I need to display JQuery UI Datepicker on most of my MVC views. So I have created a Model class for Date Range:
public class DateRange
{
[DisplayName("From")]
[DataType(DataType.Date)]
...
0
votes
1answer
35 views
DatePicker and chrome issue
So I have just come across this issue.
I am using the JQuery UI to have a datepicker which "maps" to a readonly textbox:
$(document).ready(function ()
{
var dateFormatStr ...
0
votes
0answers
31 views
Partial view after autocomplete
I am using this code for user search with autocomplete
& I would like to load a partial view with the results of the search after submit ,
How can I do it ?
Thanks
$(document).ready(function () ...
0
votes
0answers
92 views
JqueryUI sortable list and submit back to MVC Controllor changes without .ajax
I have two lists: left and right. Each item in that list contain ID and Description.
Both lists on the ui are <ul></ul> The user drags one item onto the other list. When the user clicks on ...
0
votes
0answers
237 views
JQuery Dialog and multi Mvc4 PartialView
i have a View, and on a button click i need that open me a JQueryDialog loaded from PartialView that have inside a list of items... on click of one of these items, i need that in the same JQueryDialog ...
0
votes
1answer
63 views
Get data from unordered lists that are dynamically added to the page
I'm having a page where I can create some configuration sections and the page is structured as follows:
It has a button that adds a partial view to the page (using an AJAX call) and on this partial ...
0
votes
1answer
1k views
mvc razor call jquery modal popup script from controller
I am trying to display jquery modal popup on httppost event in a controller, something like RegisterClientScript in web forms.
In the _layout.cshtml I have this:
<script>
...
0
votes
1answer
95 views
jQuery datepicker and numeric plugins not functioning despite jquery-ui.js and numeric.js declared properly
Oddly enough I'm not getting an error message, however the jquery datepicker function and numeric plugin I'm using will not function on either input field they are supposed to be attached to.
This ...
0
votes
1answer
34 views
(document).load giving me a syntax error
I am new Jqeury - Ajax. I wrote a code using jquery and it is working fine.
But the thing is i am getting a warning message like "Syntax Error". I want to get rid of this warning too, please help me ...
0
votes
0answers
110 views
Date Picker Filter not Working in jqGrid Search Toobar
I have one column in my jqGrid (the Trirand MVC Wrappers version) that uses a DatePicker in the Search ToolBar. However, this does not work. I only have two dates, 2013-05-15 00:00:00, and 2013-05-16 ...
0
votes
0answers
127 views
JQuery UI Helpers and Slider control - Stop not firing
I'm trying to use the JQuery UI MVC 3 Helper for the Slider control
Ref - http://jqueryuihelpers.apphb.com/Docmo/Slider
The call with the helper is as follows:
@Html.JQueryUI().SliderFor(new { id = ...
0
votes
0answers
908 views
How to get jqGrid selected row column data and reset subgrid navig url's
Hi – I have two more questions which is taking more time to understand and resolve.
When I expand the Main jqGrid row I need to able to get the selected row column cell values and reset the subgrid ...
1
vote
3answers
639 views
One individual jQuery UI DatePicker not working
I have three text inputs on a view. All have the class datepicker.
@Html.TextBox("Dummy", DateTime.Now, new { @class = "datepicker" })
@Html.EditorFor(model => model.StartDate)
...
0
votes
0answers
94 views
How to copy jqGrid data into another jqGrid
I have a requirement where user might want to copy data rows from one jqGrid to another jqGrid.I need to provide a snapshot kind of feature where he should be able to see new grid with copied ...
0
votes
3answers
201 views
Convert C# List of object to javacript array of objects
I am using jQueryUI's autocomplete to allow the search of users. The documentation states that I am able to use an array for the source of the data in the following format: [ { label: "Choice1", ...
1
vote
1answer
154 views
How to reload hidden jqGrid from jquery - ASP.NET MVC
While using helper classes from Lib.Web.Mvc 3. i ran into an issue .
Issue-
I’m setting set the hidden property of jqGrid to true so that on the first page load it is not visible. But when user ...
0
votes
1answer
211 views
Partial view in a dialog
I have managed to get the JQuery Modal dialog to show and within it, I load a partial view:
var url = '@Url.Action("ShowCarDetail", "Car")?id=' + id;
$('#dialog-modal').dialog(
...
0
votes
1answer
76 views
How To Change A Cross In A Checkbox To A tick Instead for Foundation UI
I have a UI where Multiple Check-boxes are there.I am just want to change Cross in a Check-box to a tick Instead?How to do this?I am using Foundation UI.
-3
votes
3answers
412 views
In ASP.NET MVC Radio buttons checked changed event
In my ASP.NET MVC4 I have two radio buttons rb1 and return and two text boxes and txt2...
How can I disable my text box txt2 whenever rb2 was checked?
Here is my code:
below code may in html ...
0
votes
1answer
91 views
asp.net mvc4 jquery ui autocomplete not working
I want to use autocomplete widget in asp.net mvc4 app. I was able to call the action to get list of autcompletition values from controller. Unfortunetely I am not able to add it to list of ...
0
votes
0answers
44 views
Multiple Column LookUp Control
I want to use look up control for select any value of basic information on my application,
also my look up control must be contain filtering.
so as bellow image :
Any suggestion is highly ...
0
votes
2answers
530 views
jQuery UI DatePicker only trickers validation every second time
I have uploaded a simple application where you can have the same experience as I am having with the
DatePicker jQuery UI:
DatePickerValidationMvc: http://sdrv.ms/17tS25J
I am using jQuery UI ...
0
votes
0answers
169 views
New Message Notification in badges
I do have a UI where Customer Dashboard consisting of a Menu is there Which includes multiple Submenus out of which i do have a Submenu called as Message.Now i want to show the Notification for the ...
0
votes
0answers
21 views
How google calender timezone works with different timezone
I have ASP.net mvc 3 application.
My local timezone is India Standard.
Google calender setting is US Mountain.
When I save date and time from application.
Then it differ by 30 min in google calender.
...
0
votes
1answer
103 views
JQuery UI accordion height issue using ajax (MVC)
When using ajax to fill a panel of a JQuery UI accordion everything works fine but the height of the panel is not content dependent. Actually the panel is one line having a scrollbar.
The script used ...
0
votes
1answer
247 views
jquery ui dialog not showing in center of window after setting position to center
I'm new to jquery ui dialog box. I used dialog box in my MVC website.
I placed my dialog container in layout page inside body tag as follows-
<div id="dialogBox"></div>
And then on my ...
0
votes
1answer
111 views
JQuery calendar and MVC datetime submit
We all know about the problems we face when it comes to different UI culture to display dates. But when posting, we also have that problem to since when posting, the ASP.NET MVC doesn't really ...
0
votes
0answers
130 views
Handling window inside asp.net mvc4 application
this is driving quite me crazy.... I need on some action to show a Dialog (I'm trying now with jQuery UI dialog) that loads a page called via ajax.
I need to expose 2 buttons inside the loaded view ...
0
votes
1answer
57 views
VS2012: Release vs Debug
There is an Azure Cloud service with webrole project developed in ASP.NET MVC 4 and JQuery.
When the cloud service is deployed with Debug build, everything works fine.
But Release build has UI issues ...
0
votes
0answers
76 views
Ajax + jQuery dialog
I am getting a list from the database with Ajax and would like to display it in a jQuery Dialog on the Ajax loaded successfully on the but I cannot get the Modal popup...
In my razor View I have ...
0
votes
0answers
64 views
Add AnyTime for Kendo Timepicker
I want to add a value for Anytime or Any for Kendo Timepicker but i dont see any tutorial about this one , Can someone Help me with this ?? any solution will do , jquery Because The Kendo time picker ...
0
votes
1answer
197 views
ASP.NET MVC: jQuery UI and other scripts loaded unexpectedly
I've got a ASP.NET MVC project on the run. On page load, the easing function of easeOutQuad is immediately used. However, sometimes when I load the page, it says there is no function called ...
0
votes
2answers
44 views
How do I parse Url with `&` sign in jquery code?
I have following code in common.js file.
logic is if HighlightTextBox if data is not matching and RemoveHighlightTextBox if data is matching.
url = /Services/GetAutoCompleteData?v=
name = My & ...
0
votes
0answers
42 views
Rebinding Persisted Model Values Back to Sliders in MVC
I've set up some Javascript to use sliders for a certain class of div like this:
$(".edit-score").slider({
range: "min",
min: 0,
max: 100,
slide: function (event, ui) {
...
2
votes
1answer
784 views
ASP.NET MVC 4 bundle with wildcard in folder path
My team uses a custom NuGet package for installing jQuery UI, which puts the theme files into a directory structure like this:
Content
jquery-ui-1.10.3
images
jquery-ui.css
jquery-ui.min.css
...
0
votes
2answers
209 views
jQuery .val() not getting value from one input, fine on the rest
I need to validate a number of fields in my ASP MVC3 view and am trying to use jQuery to do so. The jQuery .val() method pulls the accountNumber, refNumber, and ownerMaster from the input fields just ...
0
votes
1answer
195 views
Visual Studio ASP.net MVC Jquery version issue
I have a javascript/html code that works fine in a separate html file, and works fine on JSFiddle BUT when I try it on my project in a view, it doesnt work! I think it's a JQuery version-related ...
2
votes
1answer
285 views
JQuery Autocomplete not passing value to MVC controller
I am trying to pass the value of a selected item from a text box which has been populated using jquery Autocomplete. This is what I have so far:
<script type="text/javascript">
...
1
vote
1answer
136 views
Jquery AJAX success not getting triggered with Coded UI test project
I am trying to run a Coded-UI test project on a asp.net MVC4 application.
The application contains various ajax calls involved.
When i test it manually,it works fine but when i test it by using ...
0
votes
0answers
144 views
how to use jquery UI queue widget style Pluploader in MVC
I want to use plupload jquery UI style in below fashion: -
I have a link called upload files on clicking , it should open up dialog/modal of plupload jquery ui.
<input type="checkbox" ...
0
votes
2answers
83 views
Bind event to multiple inputs that have same name
In my ASP MVC page, we have a four or five different menus that are available depending on a user radio button group selection. Some of these fields share a text input box that I need to bind an even ...
0
votes
0answers
80 views
EJS TreeGrid Editing Bug on JQuery Modal
For those who have used EJS TreeGrid, its said that their release on the 9.2 the Grid Editing on Modal Pop up has been fixed but it seems like I'm still experiencing a bug, and coudnt find any support ...