I am creating 2 drop down menus where the first is a start time, e.g. 8:00 am which uses a loop to generate the times, this works fine and the drop down menu has the desired time frames, now i need to create a script which returns as false if the start time is greater than the finish time and i have this:
var conting_timefrom=frm_contin...
I need to delete all constraints for a certain column. I found this related SO question
but the indicated script actually deletes all constraints related to a certain table, not only for certain columns in it.
Is there a way of dropping only constraints applied on a given column?
Alternatively, my bigger problem is, how to drop a colum...
I have a flex application with 2 tree. I should allow the drag and drop from left tree to right tree based on the local name of XML. While working on this I encountered peculiar kind of problems.
when dragged and dropped to right tree from left tree, the dragged item in lefttree is appearing twice
when certain items are dragged to rig...
Hi
I have strange problem with drag and drop operation between two canvases. I wanted to drag my custom control from one canvas to another.
I started dragging operation with this code
DataObject dragObject = new DataObject("CalendarBlock",block);
DragDrop.DoDragDrop(this, dragObject, DragDropEffects.Move);
In second ca...
Hi,
I am showing Category and Sub category in a drop down box and i dont want the drop down value of the main category to be selected by any user.
so i applied disable="disabled" and it works fine in firefox, chrome, and also IE8, but it is not working in IE6 and IE7
any solution
my code:
<option value="test" disabled="disabled" >T...
Hi,
I'm using http://maps.google.com.au/?ll=, to open maps iPhone app from my app, but it only show the coordinate without the pin drop automatically.
How can i make the pin to drop automatically?
...
I have the following Oracle SQL:
Begin
-- tables
for c in (select table_name from user_tables) loop
execute immediate ('drop table '||c.table_name||' cascade constraints');
end loop;
-- sequences
for c in (select sequence_name from user_sequences) loop
execute immediate ('drop sequence '||c.sequence_name);
end loop;
End;
It was giv...
How do I define an expression (or any other alternative method) when I want to select a value from a dynamic drop down list?
ex:
drop down list has these values:
Plan A (X)
Plan B (Y)
Plan C (Z)
where, X, Y and Z are all random numbers.
Is there a way where I can define my selection to select the text up to "Plan #" and ignore the "(X)...