The extra tag has no wiki summary.
3
votes
2answers
43 views
How can I prevent extra array elements being created in Javascript?
In PHP, if you do this
$var = array();
$var[5000] = 1;
echo count($var);
It prints 1.
In JS it makes the "missing" elements.
<script type="text/javascript">
var fred = [];
...
3
votes
2answers
313 views
Android - Starting a service with extra information through put/getExtra
I've really tried to get through the intent.putExtra() and getIntent().getExtras() and apply them to one of the SimpleService tutorials. I know a lot of people have already asked "why is bundle ...
3
votes
1answer
314 views
Django annotation on field added with extra
I'm trying to find a way to take an annotation over two fields on a model added together. Something like:
total_done = qs.values(
'ability__ability_name',
).extra(
select={
...
3
votes
1answer
519 views
Django admin pages: Can queryset extra fields be used for sorting specific columns
So, the extra field in a queryset can be used to add additional columns to your select query, which in turn can be set as the default ordering. I have so far been able to achieve this: created an ...
2
votes
4answers
88 views
new and malloc allocates extra 16 bytes
I'm writing on c++ in VS2010 Windows 7. I try to read file of size 64 bytes. Here's the code:
BYTE* MyReadFile(FILE *f)
{
size_t result;
BYTE *buffer;
long lSize;
if (f == NULL)
...
2
votes
1answer
60 views
Mouse side buttons in python?
I am trying to use my mouse as remote on my laptop and I would like to use side buttons in them. I am coding in python as I have already succeeded doing it with autohotkey. But autohotkey uses too ...
2
votes
2answers
146 views
Getting intent and its extras, but not the intent of the activity that started the new activity
When you are about to start a new activity, and want to pass a variable, you usually just do this:
Intent intent = new Intent().setClass(this, NewActivity.class);
intent.putExtra("variable", ...
2
votes
3answers
382 views
Using extra() on ValuesQuerySet in Django
I'm trying to calculate a percentage with two values which are themselves aggregated. The SQL query that explains what I'm after is as follows:
SELECT (SUM(field_a) / SUM(field_b) * 100) AS percent
...
1
vote
4answers
66 views
Displaying the To address prefilled in Email Intent?
I am not able to pre fill the TO field in Email client to the "to" address mentioned in the extras here:
EmailImage.setOnClickListener(new OnClickListener() {
@Override
...
1
vote
4answers
70 views
5px extra margin getting added to the bottom of each div
I am trying to design a simple header to a page in css. I planned to stack two divs on top of each other. The top one has many tabs and the bottom one is a plain solid single image div. But when ...
1
vote
2answers
48 views
Where is this extra space between divs coming from?
http://www.lethalmonk6.byethost24.com/index.html
If you inspect with firebug the spacing between the "project-link" divs, there are a few pixels of added margin between each div. I have the margin ...
1
vote
1answer
136 views
php creating extra space in html page
I'm new to web development and I'm really stuck with this silly problem. When I insert php code before html code, something like this: <?php ...some code... ?><!doctype ...
1
vote
1answer
138 views
Can't put extras for an intent in notification
I'm creating a notification from a Service that has an intent with an extra integer. For some reason, this isn't as easy as it seems. This is what I'm doing:
Notification notification = new ...
1
vote
1answer
92 views
Android: Update bean information between activity
I'm new on Android developing.
I'm trying to manage gps location between activity. In particular I have created a thread, started with main activity, that update after a few interval the gps position ...
1
vote
5answers
549 views
How to pass string between two activities
I have two activities A and B, and from activity A, I click on a button that opens a dialog box which contains a form consisting of two edit text fields and a button(the button in the dialog box is ...
1
vote
1answer
104 views
extra bullet item in IE8
Throughout my site I am seeing an extra, empty bullet at the beginning of every unordered list in IE8, but not Firefox.
I validated the page using the W3C validator service and have no HTML errors. ...
1
vote
1answer
134 views
Do Intent extras have to be removed?
This might be a stupid question, but is there a rule that states that intent extras have to be explicitly removed by the consuming activity, or is that only true if you're recycling Intent objects?
...
1
vote
1answer
192 views
IE 7 - getting extra padding on bottom of footer, any fixes?
Here is my css for my footer. It is supposed to be at the very bottom of the page, but for some reason in IE 7 .. i am getting about 10px of extra margin. Any fixes?
/* FOOTER ...
0
votes
0answers
5 views
2 UILabel objects for 1 row of a UIPickerView
I have a UIPickerView in my viewController,
and so far this pickerView is just a normal one, I mean it has 2 components, with several rows in each component, and a title for each row on the left.
...
0
votes
0answers
26 views
Lines extended below the last row of each page when printing large HTML table
I used thead and tbody for printing a large number of rows. The header on each page is displayed but at the end of the page, there are extra lines.
how can i get rid of this?
i saw an article about ...
0
votes
0answers
59 views
Extra space in google maps api in internet explorer?
I've got a googlemaps v3 javascript map inside a div which is inside a fieldset (fieldset-div-map-/div-/fieldset). There are other divs with content in this fieldset also.
My problem is that the map ...
0
votes
0answers
41 views
How to download extra content from a url on app first install (android) [closed]
Have been looking up and down for this, but no luck so far.
Have an app that will need to download some external content (videos) and put it on the SD card.
Then videos will be played from there.
...
0
votes
2answers
73 views
What is wrong with this embed code?
This is the embed code for .swfs I got from Adobe's site:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="620" height="480" id="indexslideshow">
<param name="movie" ...
0
votes
0answers
18 views
Tools Related to programming [closed]
Which tools do you use that help you program?
I mean tools like git/mercurial, lint, clearcase, XMLs and such.. tools that you don't have to use but make working on projects simpler/stronger.
Thanks!
...
0
votes
0answers
87 views
iPhone Tesseract Extra characters?
Using tesseract for the iphone (Nolan Brown's example) I get some weird results from my application.. For example I give it and image with only "TEST" written on it and tesseract returns "TEST TI". ...
0
votes
1answer
115 views
extra commas in csv jasper report
I have written same jrxml to export report in pdf and csv format.
The pdf report is fine, but for csv report, it is inserting extra commas in a line.
Here is the example of csv report output:
TXN ...
0
votes
3answers
42 views
I am using a very common namespacing pattern but want to extend it to pass a second parameter
My present namespacing is like this
var MY = MY || {};
MY.namespace = function(str){};
So basically, you can just create MY.namespace("new"); and then My.new = function(){};
But now, I want to ...
0
votes
1answer
146 views
getExtras from ListActivity are NULL in Android BroadcastReceiver
I'm trying to receive some data in my BroadcastReceiver which is called by a ListActivity.
It is called, I've tested it, but getExtras always returns NULL.
This is the interesting part of my ...
0
votes
0answers
174 views
How to add additional costs to cart depending on product options
I want to create a “SalesRule” (which handle disounts) but then for adding some additional costs to the cart. As far as I can see MultiFees does not do the trick.
This SalesRule needs to do the ...
0
votes
1answer
256 views
Null pointer when getting intent extra
Some times when running my app I get a null pointer when retrieving a value bundled with an intent
setting it in one class
private void start(){
Intent i = new Intent(this,Tabs.class);
...
0
votes
0answers
148 views
Trim the extra empty column in Rich:Faces nested dataTables
I have a dataTable with 7 columns. The 7th column is another dataTable but should be displayed in the next row. The sixth rich:column was declared with a colspan=2 and the seventh rich:column was ...
0
votes
1answer
120 views
Extra space in LinearLayout widget
I'm not able to figure out why my widget has an extra space on my phone desktop.
It has extra space on top and on bottom. It would be graceful if somebody could help me, I've been struggling with ...
0
votes
0answers
102 views
Extra Characters at the beginning of rendered view in cakePHP
I have a cakephp project that I am working on and when I look at the source code after it is rendered in the browser, it is throwing two question marks at the beginning of the code.
??<!DOCTYPE ...
0
votes
1answer
301 views
How to map a ManyToMany reflexive relations ship with extra coloumn in JPA
I'm trying to map a USER/FRIEND relation ships using JPA over Hibernate. The ralation ship have an extra coloumn friendShipStatus that describe if the requested frien has accepted on not the ...
0
votes
0answers
377 views
Crash after sending sms android
Im building an app that sends an SMS. Its sending the SMS fine, but for some reason the intent restarts and when it does, its not getting the sent extras from the previous intent the second time ...
0
votes
2answers
295 views
Using the CodeIgniter tables library I am having an issue. It keeps printing an extra row with two columns in it
Here's the code in order of Model, Controller, Then View
// MODEL
function get_all_events()
{
$query = $this->db->get('events');
if($query->num_rows() > 0)
{
return ...
0
votes
1answer
474 views
Using .annotate() and extra() together in django
It seems i cannot use annotate and extra together when making a queryset
This
discussions = game.gamediscussion_set.filter(reply_to=None).annotate(up_votes = Count('userUpVotes'), ...
-1
votes
5answers
56 views
Why doesn't extra.getString() == “edit” work, but extra.getInt() == 1 work?
Here's the gist of my problem code:
String from = extra.getString("from");
Log.d("Cat", from); //debugs as edit
if(from == "edit") {
Log.d("Cat", "Edit");
} else {
Log.d("Cat", "Not Edit");
}
...
-2
votes
2answers
87 views
php echo add extra space
Input text :
Test one two three fourfive
Text is splitted by preg_split with additional processing and now result array is:
Test one
<span>two</span>
three
...
-5
votes
1answer
425 views
CSS extra horizontal space [closed]
I have been trying to removing the extra horizontal space coming in my HTML/CSS Page.
Any idea why this occurs.
Thanks