A default, in computer science, refers to a setting or value automatically assigned to a software application, computer program or device, outside of user intervention.
2
votes
1answer
28 views
Specify default property value as NULL in spring
I want to define default property value in Spring XML configuration file. I want this default value to be null.
Something like this:
...
<ctx:property-placeholder ...
0
votes
0answers
25 views
C# DefaultValuesNeeded in a databound datagridview
I'm running into some problems in my datagridview in a C# forms project. I have a datagridview with 20 columns. The datasource is a dataset which simply runs a stored proc and fills the columns.
I ...
0
votes
1answer
13 views
Is a call to PreferenceManager.setDefaultValues() necessary for clearing preferences?
Until now the "Reset to Default" button in the PreferenceActivity of my app did something like this:
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
...
1
vote
2answers
31 views
C# StringComparer: Optional Argument Default [duplicate]
I'm attempting to create a method which checks whether a String contains any Strings contained within an IEnumerable<String>.My method so far is this:
public static Boolean ContainsAny(this ...
2
votes
4answers
51 views
Nullable bool or bool with default value in action?
Perhaps a small question but im curious.
What is favored?
In a controllers action, when passing arguments, when and how should they be used?
public ActionResult Action(bool aBool = false)
or
...
0
votes
1answer
73 views
Multi select dropdown - how to add default value
I'm trying to add default value in multiselect dropdown,
so far i tried
<select name="addons[]" multiple="multiple" id="addons">
<option value="Not Selected" <?php echo ...
1
vote
3answers
19 views
jQuery remove specific input value before submiting
Here is what I have:
<form method="get" action="" name="advsearch">
<input type="hidden" name="query" value="">
<div class="formelement-01">
<select name="product" ...
0
votes
1answer
21 views
Set highcharts y-axis min value to 0, unless there is negative data
I'm having an issue with highcharts where I have a number of different charts being generated by JSON calls.
For the majority of these charts I need the minimum y-axis value to be set at 0, however ...
0
votes
1answer
30 views
The default value of column is missing when using 'select into table' to copy table in sql server
As you know, we can use 'select into table' to copy table structure in sql server, but there's a problem when the column of source table has default value, the default value setting is missing in the ...
0
votes
0answers
23 views
Office Ribbon DefaultText (NullText) for editBox
I have the following xml as custom ribbon to provide a searchbox.
<?xml version="1.0" encoding="utf-8" ?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" ...
0
votes
2answers
88 views
display checkbox list on selecting value of dropdownlist
I want to display checkbox list on selecting one fix value of dropdown list:
javascript:
function getDays(){
var selectedString = select.options[select.selectedIndex].value;
...
0
votes
1answer
43 views
Dropdown value depends on another dropdown value
I have this type of form in which i have one drodown :
<b>Please mention Lunch or Dinner or both</b><br/>
<select name="ldb" id="ldb" onchange="coajax();">
...
4
votes
3answers
82 views
Using default reference object relationship to access default values for properties in C#
I have an object in a hierarchy, whose values can default to the parent object's value. Both objects are of the same type.
As an example: if the Score property is double.NaN, then the Score value ...
1
vote
0answers
32 views
Doctrine 2- Default value when persist and entity with a null value for a date field
When I persist and entity with a null value the persist operation in inserting in the database current date. There's no problem if I fill the form / object field with a correct date value, but, as I ...
1
vote
1answer
16 views
How to set the default-value for a maven array parameter?
I have a parameter in my custom plugin that is an array. If the parameter isn't given anything, I want to set the default-value to be a blank array. Of course, here is the normal syntax for a regular ...
0
votes
1answer
43 views
Internal bool parameter with default value still required when running report [duplicate]
In SQL Server Reporting Services report I had a bool parameter @IsCopy. We decided, that this parameter wont be needed. Instead of deleting parameter and modifying all places, where it is used, I ...
3
votes
3answers
57 views
Difference between ParameterInfo.IsOptional and ParameterInfo.HasDefaultValue?
They both sound similar. From msdn:
ParameterInfo.IsOptional
Gets a value indicating whether this parameter is optional.
This method depends on an optional metadata flag. This flag can be
...
4
votes
1answer
37 views
Difference between ParameterInfo.DefaultValue and ParameterInfo.RawDefaultValue
This is a follow-up question of How do I get default values of optional parameters?
From documentation, DefaultValue:
Gets a value indicating the default value if the parameter has a
default ...
2
votes
1answer
47 views
How do I get default values of optional parameters?
I have a constructor with optional parameters. I would like to have an expression to invoke that constructor without providing the optional arguments (I mean let the object be constructed with default ...
0
votes
1answer
41 views
How to force execution of value assignment in blocks of type <%=value%>
is there a directive or a instruction to force the execution of the blocks of type <%=value%> in webpages?, because i have a web project in which i have a block of that type and it just evaluates ...
0
votes
2answers
53 views
Why can't I add these default values in my SQLite database in Android?
So I'm building an alarm application. I want to display a few default alarms when the application is first installed. For example, 3 alarms at 7am, 8am and 9am. Below is my code.
getAllAlarms() is ...
0
votes
0answers
69 views
Use calculated default value instead of null in Jackson
I'm using Jackson 2.1.3.
My goal is to use some default value for field, when deserializing bean from JSON. Specifically I'm write on Scala, so I want deserializer to use default value for field, if ...
0
votes
2answers
48 views
PHP function parameter with callable hint… can it be NULL?
I would like to have a PHP function which accepts a parameter A, which I have given the type hint callable. Trouble is in some situations I would like to be able to pass NULL or something like that, ...
2
votes
1answer
85 views
where to place default value parameter in variable-length function in c++?
in variable-length parameters function, the '...' must be place last. And default value enabled parameters must be last, too.
so, how about both needed in the same one function?
Now I have a log ...
0
votes
3answers
75 views
Why I cannot set ANY value in IF condition?
I have 2 static variables like below
private static DateTime _currentPollStartDate = DateTime.MinValue; //As Default
private static DateTime _currentPollEndDate = DateTime.MinValue; //As Default
In ...
1
vote
3answers
35 views
creating default parameters in python
I have a function with three parameters, parameters two and three have default values. The default value for parameter three is dependent on the properties of parameter one. However, I obviously ...
0
votes
2answers
60 views
How to make certain parameters optional in C function
I have a situation where in I want one of the parameters of function to be optional. I wanted to know how I can achieve it..?
int mapgw_cm_trace(int trapLog, char *pcMsgId, ...)
I want traplog ...
0
votes
0answers
6 views
Term for the state of optional variable when its value differs from default?
Let's say I have an optional variable called foo. It's default value is bar. Let's be in a state when we haven't modified the value yet since initialization.
Is there a terminology for saying that ...
0
votes
2answers
44 views
Cin Show Default Value
With C++ is it possible to give the user a default value with the Cin statement, then have them backspace what they want to change? For instance: I give the user an option to change a string name, I ...
2
votes
1answer
58 views
Injecting XML schema defaults into documents with PHP
Here we have a simple XML schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="item">
<xs:complexType>
...
1
vote
1answer
54 views
problems while rating via selected star images for vision and back end select hidden value of input type radio
Hi i am trying to get value of input type radio by clicking on a star image by vision
and am success in this but am stuck in resetting the star image in other row
take a look of this fiddle ...
0
votes
2answers
69 views
Default value for div menu
I have a problem with the div menu.
I would like to have that the value for the data-link variable is set to first so that when I initially load the page, there is below the menu the line ...
1
vote
1answer
26 views
Maven: Create plugin variable with default-value from another class?
I have a plugin that I'm creating and it has a parameter like so:
/**
* Global variable as maven plugin parameter
* @parameter expression="${plugin.var}" default-value=OtherClass.GLOBAL_VAR
*/
...
0
votes
1answer
791 views
extjs form panel set default value textfield
This seems like a trivial issue, but... I have a list of addresses in a panel to which I wish to add geolocation coordinates (and to display them on a map) that is rendered in a form panel, so that ...
4
votes
2answers
113 views
Erlang records with both type and value restrictions as well as default values
I am trying to write a record which represents a bank account:
-record(account, { name :: atom(),
type :: atom(),
balance = 0 :: integer() }).
I also want ...
5
votes
2answers
131 views
What do default values of pointers in constructors mean?
I try to understand this code (it is taken from here):
template <class T> class auto_ptr
{
T* ptr;
public:
explicit auto_ptr(T* p = 0) : ptr(p) {}
~auto_ptr() ...
1
vote
1answer
65 views
My constructor specifies at least one value for construction, and yet it can be default constructed
Take the following class:
class Foo{
public:
Foo(std::string bar_, int baz_ = 7)
:bar(bar_)
,baz(baz_)
{}
private:
std::string bar;
int baz;
};
Since Foo(std::string bar_, ...
1
vote
3answers
69 views
Generic typed function: return a non-nullable value
I wrote this trivial utility function:
public static T isNull<T>(T? v, T d)
{
return v == null ? d : v.Value;
}
the purpose is to avoid annoying task like check for a member to be null, ...
2
votes
2answers
44 views
Object Reset method or new reference for event subscribers?
(Using VS2010. Assume performance is not an issue).
I have a particular object that implements events for all its property changes. Sometimes it will be necessary to "reset" the object to all its ...
0
votes
1answer
124 views
Does Backbone.js Model defaults override null, undefined, etc. I put in the View?
I'm making my first steps on Backbone.js and I'm having some problem on understanding how default values are set if the View get undefined or null values from outside:
var Status = {
Models: {},
...
1
vote
1answer
69 views
How to send parameters from PHP to Backbone in external file.js
I'm tring to write my first Backbone.js app inside my CakePHP app and trying to avoid writing my app in the page directly but to do it on a specific file stored in js/backbone/app.js where I'll put ...
0
votes
1answer
76 views
Retrieving a select drop down value with a space in between the value string php and jquery
At the moment I have a working select drop down which has an on-change event to manipulate the data within a certain div.
It works just as I want but I am having trouble retrieving a value which has ...
1
vote
2answers
91 views
Python 2.7: how to pass options for standalone/module code
I have written a python module mymod.py that can be used also as a standalone program from command line.
In mymod.py I have defined a few functions (where default values are set using keywords)
and ...
0
votes
4answers
600 views
how to pass default value to date parametere in storedprocedure - Sqlserver 2008?
Here it is my stored procedure:
ALTER proc [dbo].[allrecp]
@peid int=0,
@pename varchar(20)='',
@pdes varchar(20)='',
@pdoj date='1111-1-1',
@sal money=0,
@dept int=0,
...
0
votes
1answer
85 views
How do I return default value for sales force custom object boolean field, in apex?
I am trying to return the default value for a field of type boolean, which belongs to a salesforce custom object.
Once I have my field, I'm using:
sObjectField.getDescribe().getDefaultValue()
But ...
0
votes
1answer
60 views
Define default value for plain input field (Templavoila)
I tried to set the field "Sample Data" on the "Configuration" page when mapping a data element with Templavoila. But it seems it is used for something else.
Is it possible to define default values ...
2
votes
1answer
161 views
Integer changing its own value in Visual Studio 2012 c++ [closed]
the size variable of this class is set in the constructor to zero. it is only incremented or decremented when you add an item to the array or remove one, and in the case so cleaving in half, the size ...
0
votes
3answers
97 views
How to assign default value in a parameter?
I have the codes below that will display data from access database into textboxes of another form.
item items = new item();
Add_Order addorder = new Add_Order();
OleDbCommand cmd = new ...
0
votes
1answer
106 views
CheckBoxPreference Default Value
I have a CheckBoxPreference defined as follows:
<CheckBoxPreference
android:defaultValue="true"
android:key="prefVisible"
android:summary="@string/pref_visible_summary"
...
0
votes
1answer
135 views
Why when I deserialize with JSON.NET ignores my default value?
I'm using JSON.NET as my main serializer.
This is my model, look that I've setted some JSONProperties and a DefaultValue.
public class AssignmentContentItem
{
[JsonProperty("Id")]
public ...





