Tagged Questions
0
votes
0answers
27 views
Filter datetime fields only by the date value
The problem is this. I have column in my database named Date of type datetime. I'm working on an ASP.NET MVC3 application using jQuery grid to visualize the data. If I use simply this to show the date ...
0
votes
1answer
41 views
How to get MVC ActionResult in External Javascript File
I am confuse how to achieve this
I have a external javascript file let say script.js and one <div> tag in HTML file.
for example
<script src='script.js Full Path'></script>
...
-1
votes
1answer
51 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 ...
1
vote
1answer
21 views
MVC Razor submit data in XML
That's me again with MVC Razor.
In web i see a lot of tutorials by sending data from JQuery to Controller and vice-versa via AJAX using JSON, but I can't find any similar example with XML.
Any ...
1
vote
1answer
28 views
CheckBoxFor returning previous value in javascript function in ASP.NET MVC
I am using ASP.NET MVC with c#.
I am using CheckBoxFor in my view for a boolean value of RememberMe.
This is my checkboxfor in view:
<%:Html.CheckBoxFor(model => model.RememberMe)%>
and ...
1
vote
1answer
35 views
Filtering data server side using jQuery grid
I am working on ASP.NET MVC3 application and we are using jQuery-grid to show data from the database.
It seem that I lack the knowledge of some pretty basic concepts here but please be polite and ...
0
votes
1answer
46 views
Post Function in jQuery is not working
I am using Ajax function to add product in cart in MVC 3
In Ajax i have a function for adding product, inside that function i want to call a another function but its not working..
My Ajax function ...
1
vote
1answer
23 views
scroll to specific content in TinyMCE editor
I am using TinyMCE editor plugin with ASP.NET and MVC3.
I want to scroll to particular DIV content in html. How can i do that.
var ed = tinymce.editors[0];
var $marker = ...
0
votes
0answers
23 views
MVC SLideshow gallery photo
i try to build an application that enable for admin to create album of photos, so that the users can view the different albums crated dynamically:
i found an application that permit to display album ...
0
votes
1answer
32 views
how to set Individual rows marked as non-draggable and/or non-droppable?
I am using jquery draggable plugin in my asp.net MVC 3 app, where user can drag/drop a row of a table.
My requirement is that I need to mark some rows of table as non-draggable and/or non-droppable ...
0
votes
1answer
61 views
jQuery Autocomplete wrong item in text box on select
When a user begins typing in the DRMCompanyName input text box, and autocomplete feature fires that displays both the company name and the company id. When the use clicks on a selection, the company ...
1
vote
2answers
37 views
Selecting placeholder's value as a selected value in asp.net mvc3
I am using Telerik Dropdownlist in ASP.NET MVC3.
I have take placeholder in it as Select.
After selecting value when i'll click on reset button, I want to set dropdownlist's selected value as a ...
0
votes
0answers
31 views
Call reset from jQuery ui grid
I am working on asp.net mvc3 application. I have to use jQuery UI grid but I don't have the time and the option to go through it step by step and it seems that I am not able to execute even basic ...
1
vote
1answer
47 views
how to open form in same page like a popup using jquery
by using the following code iam getting form as splitted into multiple tabs, i want it as single form opened like a popup
$(function () {
$('a.linkId').click(function () {
...
1
vote
0answers
50 views
Get path of uploaded image from razor view via jQuery Ajax
I am working on an ASP.NET MVC3 application. I'm implementing custom image gallery and I meet a lot of difficulties. The target browser is IE9 so I can't use HTML5 File API. All my code is inside ...