|
Hi,
I have two drop down list box . I would like to populate drop down listbox 2 based on selection in drop down listbox 1. Can you please guide me whether this possible in the sharepoint 2007. Both drop down listbox populate from database.
I have created...
Started by dotnetworld on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Lookup fields in SharePoint edit forms
SharePoint Cascading Drop Down List (With Filter) Field Type -project provides you dependent drop downs..
|
|
By the no-drop icon I mean the circle with a slash indicating that you can't drop in the given location. Which function is responsible for triggering this icon change?
Started by Pierre LaFayette on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Argument of the OLEDragOver event to inform the source what drop effects are allowed for this control, or "no drop" action..
|
|
I need to drop all the tables in a database without knowing their names beforehand. The typical procedure is to drop and then recreate the database but this is not an option. What is the best way to to it?
Started by Angel Chiang on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
There was an entry on the Xaprb blog recently which covers this nicely 'DROP TABLE %D.%N'
If you're happy with the results then:
mk-find '<database>' --exec 'DROP TABLE <databaseName....
And then drop the tables listed there.
|
Ask your Facebook Friends
|
Is it possible to get event data from an HTML drop down list (i.e. the list that drops down, when you click on a drop down list) using jQuery / plain jscript? I am looking to capture:
the number of times a user hovers over <option> before selecting...
Started by Carl_Platt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Lt;select id="test"> <option value="1">one</option> <option value="2">two</option> <option value="3">three</option> <option value="4">four</option> <option value="5">five</option> </select... .
|
|
Hi guys,
I need to populate a drop down based on the selected value in another drop down. I can use AJAX requests to do that but I am searching for a solution using JSF only. The values to populate the drop down need to come from a table every time user...
Started by Zaheer Baloch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What happens, is when the value of the first drop down changes, the second drop down.
Items.
|
|
My C# program has a list of files that can be dragged from it and dropped into another program. My requirements are that the file be copied to a different directory first.
So, can I be notified of the drop operation so that I can only copy the file if...
Started by Joel Lucsy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
@Stu I meant that the user....
You want to know about drag and drop, browse through these search results (multiple pages worth):
Raymond Chen on drag and drop
So, you intend to modify the data being dropped based on the drop.
|
|
I have my screen divided into two DIV s. In the left DIV I have a few 50x50 pixel DIV s, in the right DIV I have an empty grid made of 80x80 LI s. The DIV s on the left are draggable, and once dropped on a LI , they should snap to center of that LI .
...
Answer Snippets (Read the full thread at stackoverflow):
Of the code that I used to snap it into place
$('.droppable').droppable({ drop: function(ev, ui) { //Get.
|
|
Say I have two drop downs which are populated when the my jsp loads
<select id="Group" name="group"> -- first drop down <option value="0001">1</option> <option value="0002">2</option> </select> <select id="subGroup...
Started by shailendra on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You are removing the second "batch" of options so they don't exists any more the next time you want to use them .
Then populate the select box from that array on change .
Store all the options for the second select box into a array when the page loads .
|
|
I am trying to detect which cell an object is being dropped into.
<table> <tr> <td class="weekday">Sun</td> <td class="weekday">Mon</td> <td class="weekday">Tue</td> <td class="weekday">Wed</td&...
Started by Ryan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you drop the draggable div into the droppable div this code will work:
$(".draggable").draggable(); $(".droppable").droppable({ drop: function(event, ui) { $(this).html('Dropped!'); } }); </td> </tr> ....
Of the cells.
|
|
Sorry, but I am new to TSQL so I don't even know basic things. I've been working on this function, but I've been running into a lot of syntax issues. If someone can assist me in writing this function, I would appreciate it.
1. I would like it to check...
Started by MedicineMan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
(Functions cannot modify the database.) Something like:
CREATE PROCEDURE SAFE_DROP_TABLE(@TableName nvarchar(30)) AS BEGIN')) EXEC ('DROP TABLE ' + @TableName....
You can't drop a table with a function: you have to do it in a stored proc.
|