drop

ASP DROP DOWN list, onchage event doesn,t work

if i use onchange=return fn1(), in client side even the fn1 return false it automatically fired the server side onselectedindexchange event,How i can i stop the server side event if the script fn1 return false... ...

how to clean the css style of jquery-ui be added automatically when someone use ".draggable()"

this is my code : <style type="text/css"> #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; border:1px solid #DDDDDD; color:#333333; background:#F2F2F2; } #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; border:1px solid #E78F08; ...

How to drop Stored Procedures in a SQL 2000 + SQL 2005 compatible manner?

I have a project that requires me to do development in SQL Server 2005, but do deployments to a SQL Server 2000 box. For 99% of the SQL code, I have no problems, everything appears to be backwards compatible. Now I am just about to start adding all the Stored Procedures (SPs) to source control, and I like the idea of doing a drop-add e...

Silverlight 4 dropdown control

I am trying to create a drop down control that is made up of a text box a button and a treeview control. I can not really find any tutorials on how to create a custom drop down control. I did find a user control that drops down a treeview control (vectorlight), but I want to implement my own custom drop down control. Any help would be gr...

iphone mapkit : have pins fall one by one

Hi. I'm using an mkmapview and dropping pins on to it. I would like the pins to fall one by one, rather than all simultaneously. Originally I was calling [self performSelector:@selector(dropPin) withObject:nil afterDelay:dropTime]; where dropTime was a different delay for each pin, and dropPin was a method to make the pin drop. Unfort...

What is the syntax to drop a Stored Procedure in SQL Server 2000?

Simple question, as the title suggests: What is the syntax to drop a Stored Procedure (SP) in SQL Server 2000, by first checking that the SP exists? Please provide the full code. ...

Ruby accept argument via drag and drop onto rb script

I would like to have ruby open with dropped files as arguments. I running Win 7 Enterprise, Ruby 1.8.6 and have tried RubyDragAndDrop.dll, which I could not get installed. Any ideas? ...

using javascript ondrop to add to a page rather than replace-tab in firefox?

I have various html links on a page that I want to drag into another page/window using the ondrop event. While I expect to modify the objects being created on the new page, the example below is likely good enough to show what I am after. How do I prevent firefox from simply loading the URL I am dropping in the page? I was hoping to us...

jQuery UI Drag and Drop causes bound click to trigger

I've got a UL of items using jQuery UI that I have drag and drop capable. However, I also need to be able to click on one of the items in the list and trigger off a little routine that adds a header line above one of the "li"s. The problem lies with the click on the drag and drop. I've tried to bind the click to a specific region of the ...

ORACLE - Dropping a constraint when the table doesn't exist

So for a weird reaon my table was dropped but the constraints remained so I cannot recreate the table with the same constraints.. Is there a way I can drop those constraints? When I do a select in the all_constraints table: select * from all_constraints where CONSTRAINT_NAME like 'C710%'; I get this: ("x" being the table_name which me...

Drag & Drop from Windows Explorer into my application’s TextBox

Why is the dragdrop event never entered? private void textBox1_DragDrop(object sender, DragEventArgs e) { Array a = (Array)e.Data.GetData(DataFormats.FileDrop); e.Effect = DragDropEffects.All; Debug.WriteLine("were in dragdrop"); } private void textBox1_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPres...

calling jquery ajax() with drop down menu?

im working a domain check script it works fine when i call ajax on keyup but by default the dropdown has the .com what if the user chooses a domain that is already taken, how can i get this script to do another check when the users switch from .com to .net or .org? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://...

How can i add a drop down extension to my existing menu

Hello. I need to modify my existing menu and just add few more lines to make it drop down. Can someone please give me a code so i can add it to the Menu CSS? I think i need to add something like > ul li li < but im not sure.... It's after the line /* Submenu--------- Please view my page source and tell me what modification i need to...

Drop down list implementation in R

Hi All, I am using the following code for the Share Price Application I have been developing (with plenty of help from people here that is greatly appreciated!). One of the things it should do is allow the user to pick a company to analyse from stored XML Files, I have been using the following code to do this: df <- xmlToDataFrame(file...

How to drop all triggers in a Firebird 1.5 database

Hi For debug purposes I need to send 1 table of an existing Firebird 1.5 database to someone. In stead of sending the whole db , I want to send just the db with just this table - no triggers, no constraints. I can't copy the data to another db because it's just that that we want to check - why this one table is given troubles. I am ju...

jquery odd behaviour of collapsible/moveable panels with drag/drop within them

First of all, huge kudos to 'Web Developer Plus' for writing most of the initial code! I have a list of 'items' which I can drag into any one of the blue boxes inside the widgets, and then sort them. This works fine. It's only when I start toggling these widgets (showing/hiding), or moving their positions, that things start going weird....

Django Sessions getting dropped when redirected from another domain.

When a user visits my domain, a sessionid is issued by django. When he tries to do Oauth with Facebook, he clicks a button on my site which redirects to Facebook.com. Facebook redirects back to my domain, but at this point, the user's session is lost and Django seems to be issuing a new session variable. I want the dropped session to p...

jQuery and drop in table

I have the folowing code. When the table is empty in need to append to ti but if there's rows I need to insertBefore the row on which I drop. But the drop is only detected on the TABLE, the trace only show table evne if I drop on a tr $("#mytable TABLE, #mytable TABLE").droppable({ drop: function(event, ui) { v...

jQuery UI Dragging - which handler is being used?

Hi, I got the following setup for dragdrop functionality: const listDragOptions = { handle: ".camera, .texter", // dragged by either camera or edit icon //revert: true, // so dragged elements fall back to their original position, revertDuration: 200, // the element goes back instantly, no need for effects on this one sn...

Pure CSS drop down menu issue in IE 6 and 7

Hey Guys, I've seen a few hints on StackOverflow but cant really see a solution to my specific problem. I have a pure css menu with dropdowns, in IE8 and FF it works great, but compatibility mode for IE7 and IE6 it doesnt work. The thing is, it does drop down - but then when the mouse goes over the main website banner below, which has ...