5
votes
7answers
271 views
Throw/do-not-throw an exception based on a parameter - why is this not a good idea?
I was digging around in MSDN and found this article which had one interesting bit of advice: Do not have public members that can either throw or not throw exceptions based on some …
4
votes
5answers
124 views
Could/should an implicit conversion from T to Option[T] be added/created in Scala?
Is this an opportunity to make things a bit more efficient (for the prorammer): I find it gets a bit tiresome having to wrap things in Some, e.g. Some(5). What about something lik …
4
votes
5answers
153 views
A better way to test the value of an Option?
I often find myself with an Option[T] for some type T and wish to test the value of the option against some value. For example:
val opt = Some("oxbow")
if (opt.isDefined && …
3
votes
2answers
494 views
How to set option: selected in multiple selects
After some struggle, I got upto the following code for my problem. However it still does not add selected to a chosen option. You can find my original question below.
Improved code …
3
votes
7answers
445 views
Option Parsers for c/c++?
I've done some looking and there are a whole lot of libraries for command line option parsing, but it is difficult to differentiate between them. Does anyone have any experience wi …
2
votes
3answers
98 views
Jquery access to selectbox text not value how ?
example:
<select>
<option value='1'>hello me<option>
<option value='2'>hello world</option>
</select>
how can I access a TEXT not VALUE from …
2
votes
3answers
183 views
Inconsistency in jQuery’s attribute manipulation
$('<option selected="selected">something</option>')
.removeAttr('selected')
.wrap('<p></p>').parent().html();
results in
<option>something</opti …
2
votes
1answer
88 views
Is there an easy way to create a C# .NET file dialog with encoding dialog box?
I'm trying to let the user select the file encoding when they load or save a file in C# and VS2008.
Notepad's dialog boxes have an encoding drop down option at the bottom.
There i …
2
votes
2answers
136 views
Bold part of an option in a drop down list
Is there a way to bold only part of the text in a drop down list option or is this not possible?
I know that you can style the entire option with CSS, but that is not what I am lo …
1
vote
5answers
165 views
Scala: Something like Option (Some, None) but with three states: Some, None, Unknown
I need to return values, and when someone asks for a value, tell them one of three things:
Here is the value
There is no value
We have no information on this value (unknown)
c …
1
vote
2answers
134 views
JQuery XML option node
hi,
I am having an issue with parsing XML with JQuery when there is a node with an option node
<preferences><dashboard>
<report id="si_pg_vw" order="0">
<he …
1
vote
1answer
105 views
Create <option> on the fly with jQuery
Hello,
I'd like to build s on the fly in a box based on an AJAX response; i.e. if the responseText is 3, I'd like to build 3 options:
<option value="1">1</option>
< …
1
vote
3answers
179 views
jQuery: Showing a div if a specific a <select> option is selected?
I'm working on the address page for a shopping cart. There are 2 <select> boxes, one for Country, one for Region.
There are 6 standard countries available, or else the user …
1
vote
1answer
363 views
Remove repair option screen from MSI installer
I have created an standard MSI installer for P&D of my application which is using following components:
A WCF Service hosted as Windows service.
A GUI application that communi …
1
vote
3answers
98 views
How to bypass Safari option re-ordering in a select ?
Hello everybody!
Im writing a admin panel for a customer's sites, and at few places, i need to put a list of country. He want's to get Canada and US in first place, because his m …
