I'm using jQuery Multiple File Upload Plugin to upload several pictures. But form posts only 1, top, item. Fiddler (POST): POST /Images/UploadImages HTTP/1.1
i wan code for profile image setting. user can able to resize image by selecting size in the dropbox. and image cand drag specific location,(canvas image-->image can bigger then canvas and he can drag image withini the canvas,image shoud save--withini the canvas width and height)
Rquirements
1)user upload the image and will save that image and will disply the image at left side show in the figure. 2) user can select the size of the image from dropbox. the image size will be alter depend upon the selected size. 3)user can drag the image in the specific location. i mean selecting image with mouse can drag, shoud be dragable. 4)same as profile image setting of gmail,facebook and skype.
When Page_Load is running the first time, I set Image 1.jpg to the HTML control with sucess!When Page_Load is running the second time, the Image 2.jpg is Not set to the same HTML control?This even that it should though I use a MessageBox to se that the C# code is running that should set 2.jpg to the control
I have got requirement we are developing a on line holiday package booking system.
A package can have consist of multiple days like 5day - 6 night package or 10 day - 11 nights package.
Based on total no. of nights of package we are going define day wise itinerary along with itinerary images.
Now for define itinerary I want have grid view where I will define each day detail along with image. but before submitting to database to store itinerary I want to have a preview of itinerary image which will be browse from same machine or any machine attach to LAN...
I have got requirement we are developing a on line holiday package booking system.
A package can have consist of multiple days like 5day - 6 night package or 10 day - 11 nights package.
Based on total no. of nights of package we are going define day wise itinerary along with itinerary images.
Now for define itinerary I want have grid view where I will define each day detail along with image. but before submitting to database to store itinerary I want to have a preview of itinerary image which will be browse from same machine or any machine attach to LAN...
I'm using a jquery plugin called uploadify to upload images to my database. I'd like my datalist to be auto-rebind after the images' been uploaded so people could see the changes immediately. Also because this is a feature for admin there is a delete button in the datalist. I used updatePanel for this.
I put __doPostBack('" + upnlUploaded.ClientID + "','') to the javascript so when Images have been uploaded the update panel will postback.
I also have the following two lines to make it working...
Do not know if you know this plugin but basically it displays a tree.I'm having trouble using it, and would like your help to use this plugin.This link has a presentation of the plugin.Basically I have the project groups and projects where I display the tree, each project within their respective group. And once the user clicks on the group, the group is expanded showing all projects that group.Here is an example of use.
My environment is asp.net (C #)I would like to use this plugin to display the group's projects and projects under the tree:Follow the link for a code, as far as I could do.I would like to view the ul and li tags in the tree.
I have another problem is that I have Placed a file upload control in Empty template of Gridview to have multiple record insert. I have used viewstate to save multiple record into database. But problem is that I am able to find the control but it not giving any value.I have following code.
Is there any jquery tooltip plugin that allows to write some values in popup bubble and save that value in DB via AJAX?!It should also be able to display values from DB
I'm building an easy plugIn for validations, after setting up some options to be editable, and after cycling all the fields i wrote:
$(this).submit(function () {
where "this" is the main element (the form).Now I was wondering to use this plug-in in asp.net as well, so without using an html form, where there are just some inputs into a div and on click on a specific button it start...So I know that here I have to change the submit... and trying to bind it on click of the button... I don't know how to solve this...
am using Autocomplete Jquery from the following URL:[URL]I am making my project in MVC 3.0 (Razor) In this I am displaying list of names from the database and its running fine.Now I want to show this whole list in the div according to my project requirement.
I am trying to use a jQuery plugin in a control. The pages that the control can be on use partial postbacks via an UpdatePanel. I include jQuery and the plugin during the control's PreRender event like this:
The customPlugin jQuery plugin sets up a new function called "executeCustomPlugin". Later in the PreRender event of the control, I use the plugin on an element on the control:
However, when it executes, I get the JavaScript error:
$('#elementId').executeCustomPlugin is not a function
It would seem as if the jQuery plugin is never executed at all, but I set up window.alerts in the jQuery.customPlugin.js file, and it is indeed being executed.
i want to use jquery ui auto complete plugin in asp.net.
this is my behind code :
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim locations As String() = New String() {"Las Vegas", "Los Angeles", "Tampa", "New York", "s", "sss"} Dim jsArray As String = GetJSArrayForVBArray(locations) Me.ClientScript.RegisterArrayDeclaration("usernames", jsArray) End Sub Private Function GetJSArrayForVBArray(ByVal vbArray As String()) As String Dim myResult As New StringBuilder() For Each item As String In vbArray With myResult .Append(",'" & item & "'") End With Next If (myResult.Length > 0) Then Return myResult.ToString().Substring(1) Else Return "" End If End Function
I am making my custom jQuery plugin whose code is this:
[Code]....
My question is that how can I make item4 value to be compulsory? I want that user must enter value for Item4 . In my plugin I need to do some operations with item4 so how can it be made compulsory. I will be having one or more items too which should be compulsory. Is there any way by which I can warn user if the that value is not passed by the user ?
I am testing this JQuery plugin "Tag-it" by Levy Carneiro in my ASP MVC application.[URL]I want the plugin to fetch tags that i have in my mssql database and i wonder how to connect to it if someone could help?Now, my javascript looks like this:
I have a custom control which is used on many pages. I am making use of a jQuery plugin shown in the below link. [URL]
Problem is this plugin loads on the pages which take time to load and fails on those which load quickly.I also have multiple instances of this plugin on the same pages. I have tried calling the plugin in two different ways as listed below. But it is making no difference.I am doing everything in .cs file. I don't have aspx or ascx file.
I get the below error on the pages which are loaded quickly.
$('#ctl00_FullRegion_MainRegion_EditForm_PredefinedLocations_DropdownCheckList').custSelectBox() is not a function.
This issue was due to different versions of jQuery library being loaded. I had 3 plugins on the same page. 1 plugin was loading jQuery 1.42 version and the other 2 plugins were loading jQuery 1.32 version.If the 1.42 version was loaded at start up the other two plugins would fail to work.