Tagged Questions
The initial tag has no wiki summary.
2
votes
2answers
91 views
git: change one line in file for the complete history
When I started my git repo I commited a few files as initial commit to it. Now, many commits later, I noticed that I included in those files a line with information which I do not want to publish ...
2
votes
1answer
365 views
Set Initial Screen Image for Xcode Tab Bar App
New to Xcode so I'll try to explain my needs correctly.
I've used the default tab bar template to create an app. The first tab is set up with a table view. I would like the initial screen to mimic ...
1
vote
1answer
37 views
How to get initial English word for utf8 string of multiple languages? For comparasion purpose
How to get initial English word for utf8 string of multiple languages? For comparasion purpose.
For instance, Chinese word, initial English word of "你" (means, you) is "n"; initial of "好"(means, ...
1
vote
0answers
191 views
Xcode status bar hidden - different on iPad and iPhone
Of course I know how to change the status bar - [application setStatusBar...], once the application have been loaded in the application:applicationDidFinishLaunchingWithOptions: method
but I'm ...
1
vote
2answers
428 views
Pop-Up Window at inital start up, of android application
I am trying to find a code that will do a popup at the initial start up on an installed app. Much like a changelog that is starting to appear in more and more apps.
I have found some similar codes, ...
1
vote
1answer
285 views
Django manyToManyField initial value based on another object using Formwizard
I have the model below:
class DrawingRevision(models.Model):
revision = models.CharField(max_length = 10)
previous_revision = models.ForeignKey('self', blank=True, null=True)
drawing = ...
1
vote
1answer
392 views
Add an initial view (front page) with a tab bar application (Xcode 3.2.5)
I have created a tabbar application from the default templates. I want to add a frontpage that has a picture, the title of the App and that will not include the tab bar, and which will not have a tab ...
1
vote
3answers
347 views
How to set MessageDigest seed?
The MessageDigest class implements the SHA-1 algorithm (among many others). The SHA-1 algorithm allows one to use different "seeds" or initial digests. See SHA-1 Psuedocode
The algorithm ...
1
vote
1answer
321 views
Entity Framework - Initial Save is slow
We are implementing a system using EF4 and WPF. We are noticing an issue with the initial saving of data: when the initial SaveChanges is run there is a 4 to 6 second delay when context.SaveChanges() ...
1
vote
0answers
316 views
javascript: how to determine initial mouse position?
how can i determine the initial mouse position? right now i use onmousemove, but that sometimes only fires when the mouse is actually moved. same with onmouseover.
if i dont move the mouse, i ...
0
votes
0answers
15 views
Displayin values of ForeignKeys in django formsets
I have a translation formset :
def render_translator(request,src_lang,trans_lang,template='translate_page.html'):
translated_words = Translation.objects.all()
TranslationSet = ...
0
votes
1answer
27 views
CSS3 animation:element moved to its initial position after @keyframes actions
CSS3 animation reverts element to its initial position.
div is moved bottom direction,than it takes its initial position.
Is it intended behavior?
Could it stay on last position?
see,please, live ...
0
votes
1answer
45 views
Setting an initial width of a pyqt widget in a splitter
I am using python and PyQt to design a simple interface.
My question is this:
How do I set an initial width of a pyqt widget in a splitter while still allowing it to be modified by the user when ...
0
votes
2answers
131 views
KnockoutJS : how to set the initial value from a dropdown list when data is retrieved asynchronously using JSON?
Issue is related to this and this.
The problem is that when a options list is not yet populated with valid data (because the JSON call return is asynchronously), you cannot set the initial selected ...
0
votes
1answer
35 views
Solving requires an initial condition vector of length
I got the error "Solving CHIU requires an initial condition vector of length 651" when running this Matlab file:
TSPAN = (0:1:320);
[ta,xa] = ode15s('Chiu',TSPAN,[0.0258 0 0 0 0 0 0 0 ...
0
votes
3answers
41 views
How to give an initial value to textBox? C#
I want my program (C#) to have initial values for its textboxes.
(for ex: "Please enter your name")..
So that when you click (or tabStop) on the textbox the initial value would disappear and the ...
0
votes
0answers
121 views
Django dynamic field initial value
I have a form with Dynamic Choice Field as
class DynamicChoiceField(forms.ChoiceField):
def __init__(self, *args, **kwargs):
super(DynamicChoiceField,self).__init__(*args, **kwargs)
...
0
votes
2answers
189 views
Android Gallery Starting Selection Drawable
I have a Gallery that I've set up with this type of thing. Works great, except on initial load. The initial gallery item isn't "selected" according to the drawable. Sliding the gallery back and ...
0
votes
1answer
123 views
setTimeout First Delay does not take Effect
setTimeout doesn't work as expected because it will execute the codes below subsequently without waiting for the delay to run the first argument of 'setTimeout'
(function() {
var a = ...
0
votes
2answers
57 views
What is the difference between if(!variable) and if(variable != nil) iphone
What exactly is the difference between
if(!variable)
do something
and
if(variable != nil)
do something
thanks.
0
votes
2answers
61 views
there is another way to create more secure form in django
hi
i have paranoid about using hiddenfield in modelform for forigenkeys.
i initial value before i send form to user for forigenkeys and hide them
and when a user sendback values by post just save form ...
0
votes
1answer
909 views
how to set initial value to variables in iReport?
Hello Stackoverflow experts,
I have tried to use a variable of Double type in iReport 3.6.7. I want it to have an initial value like 0 or 0.00, etc. If no initial value has been set to the ...
0
votes
1answer
1k views
Django choicefield iniital value problem
I have a dynamic choice field:
PASSENGER_TYPE_CHOICE = [(p.id, p.cabin.name) for p in flight.passengertype_set.all() if p.availableSeats > 0]
self.fields['passenger_type'] = ...
0
votes
1answer
320 views
how to pass initial value of FileField to Formset (in Django)
I am trying to populate a Django formset using data from a POST/FILE request. I am able to populate all the fields except the FileField. It seems that initial cannot be used to pass the request.FILE ...
0
votes
2answers
522 views
Where to initialize the usercontrol properties before databinding?
How can I write the C# code (aspx) to initialize the user control with some default property values? I mean where/which event? I have a user control with a gridview that I bind on container page. On ...
0
votes
2answers
349 views
Initial values for CheckboxSelectMultiple
I'm initializing a form using:
MultiSubscriptionForm(initial={'email': user.email})
In my form I'd also like to initialize a CheckboxSelectMultiple widget to check a set of checkboxes. How can I do ...
0
votes
1answer
202 views
Django- settting initial condition of ForeignKey/ModelChoiceField
My app has a form which is completed and submitted by the user to submit an entry to the database.
I have 3 forms.ModelChoiceFields based off models.ForeignKey.
I am setting them to intial values ...
0
votes
2answers
111 views
'initial' argument must come first when creating django form?
I have this working code
f = SomeForm(request.POST)
When I tried to modify it into
f = SomeForm(request.POST, initial={'spam', 4})
it didnt work, the 'initial' wasnt selected ('spam' is a ...
0
votes
2answers
801 views
HowTo init Django model, before using it?
I'm new to python and django.
Apps | Versions:
Python 2.6.2
Django (working with PostgreSQL)
Question: I wrote a simple model:
class OperationType(models.Model):
eid = ...
0
votes
1answer
96 views
How do you set the initial value for a ManyToMany field in django?
I am using a ModelForm to create a form, and I have gotten the initial values set for every field in the form except for the one that is a ManyToMany field.
I understand that I need to give it a ...
0
votes
2answers
477 views
iPhone UIWebView initial focus?
I have a simple app with a full screen UIWebView. This contains HTML generated by the app. I respond to clicks on various elements of the page via document.location = "someCommand"
I have to touch ...