|
I have a very dynamic UI that provides the end user 2 detail views (each one a step deeper than the previous). When i get to the bottom of this chain I would like the ability to "preview" a pdf file ... but the only luck I have thus far is using window...
Started by Toran Billups on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Or perhaps you can find some sort of activex component to background load a pdf? - or perhaps it's possible to interpret... .
Window.Open or an Iframe.
JQuery is just a wrapper for javascript - it can only weave so much magic - you still have finite options here .
|
|
I wrote a custom WCF binding a while back to allow my load balanced farm to host services via IIS. The reason for the custom binding was that each server didn't have SSL but needed the ability to accept a client credential of username + password. The ...
Started by Toran Billups on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I assume, on your custom binding, that you also get an error if you just use security mode="Message"? A custom binding wasn't really necessary, since (if I'm not mistaken) you can use the wsHttpBinding with security mode="Message" (not requiring SSL).... .
|
|
I'm reverse engineering the relationships between a medium-sized number of tables (50+) in an Oracle database where there are no foreign keys defined between the tables. I can count (somewhat) on being able to match column names across tables. For example...
Started by Tom on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
My %column_tables; foreach my $table (@tables) { foreach my $column ($table->columns) { push @{$column_tables[$column]}, $table; } } print "Likely foreign key relationships:\n"; foreach my $column ... .
You pretty much wrote the answer in your question.
|
Ask your Facebook Friends
|
Background: I have an HTML page which lets you expand certain content. As only small portions of the page need to be loaded for such an expansion, it's done via JavaScript, and not by directing to a new URL/ HTML page. However, as a bonus the user is ...
Started by Philipp Lenssen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
$(document).ready(function()....
Sorry to say, but the answer is no if emptying location.hash doesn't accomplish the task !-)
Since you are controlling the action on the hash value, why not just use a token that means "nothing", like "#_" or "#default" .
|
|
I have a local variable I'd like to be sent along with the rest of the POST data taken from an HTML form. Is there a function that lets me put more data from the current page into the POST array?
Started by Alex Mcp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
<input type='hidden' name='what_ever' value='<?php echo $my_var?>' />
If you need the value to remain totally hidden from the user, then use the SESSION to pass it's value between requests... .
No function, simply add a hidden field with the value .
|
|
Is there any way to include the SVN repository revision number in the version string of a .NET assembly? Something like Major.Minor.SVNRev
I've seen mention of doing this with something like CC.NET (although on ASP.NET actually), but is there any way ...
Started by Adam Haile on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a look at SubWCRev - http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-subwcrev.html
The assembly version numbers are usually in assemblyinfo.cs
Stackoverflow show the revision number en the footer, maybe Jeff can tell us how he do this .
|
|
I have this at above the body tag in my page --
<script type="text/javascript"> $(document).ready(function() { $('#button').popupWindow({windowURL:'http://something',centerBrowser:1,width:400,height:300}); }); </script>
Is there a way to make...
Started by swt on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That said, if you want the popup to appear on page load, ... .
PopupWindow is hard-coded to work with links, and only responds to "click" events .
I think for security reasons a lot of browsers will not open a popup window without some kind of user action .
|
|
We're looking at possibly outsourcing some development to a local consultant, what type of questions would you ask during an initial meeting?
We're potentially looking to have them build some basic webapps in ASP.NET and SQL Server 2008.
Some of the other...
Started by Nate Bross on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Why not just tell them upfront that you are not used to interviewing with consultants and to excuse you if some of your questions seem out of line? In any case, you are hiring them, so unless you are actually rude or offensive, they should not be so touchy... .
|
How to update Select menu with AJAX w/out |
|
I did follow the article TRULLY Understanding ViewState (great article btw) and populating my drop down list is working great. I've even setup a OnSelectedIndexChange event which fires almost as great.
The problem I've found is the SelectedIndexChanged...
Started by Dave on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Imagine this is your dropdown....
A -Select One- option)? The problem is that you are loading the data each time and this is resetting the selected index .
Just a random question - do you have a value assigned to the 0th index item or is it an empty string (e.g .
|