Tagged Questions
The populate tag has no wiki summary.
9
votes
3answers
2k views
Best practice to populate static data using a Visual Studio 2010 database project?
How do you populate your database with static, source-controlled data using a Visual Studio database project? I have tried all three strategies below, finding each one to be progressively better than ...
8
votes
1answer
10k views
WPF ListView - how to add items programmatically?
Even if I know it's not ideal - I need to programmatically populate a listView (for whatever reason).
I am declaring my columns in the markup:
<ListView.View>
...
3
votes
2answers
753 views
Java JTable binding via JPA
I have tried to search for proper answers, but nothing helped me so far. I am quite new to java GUI programming, actually, to java itself.. I have however managers to understand JPA, how to retrieve, ...
3
votes
3answers
217 views
Any freeware or open source tool to populate database with some dummy values
I have somewhere around 30 tables used in my web application. I need to populate those tables with some dummy values during development. Later once the application is ready we will have the real data. ...
3
votes
2answers
2k views
WinForms TreeView recursive directory listing?
I want to make a treeview that shows all folders on the system, and only shows music files, such as .mp3 .aiff .wav etc.
I remember reading that I need to use a recursive function or something along ...
3
votes
3answers
551 views
Is there any framework for .NET to populate test data?
I am use c# and for unit testing and integration testing usually I need to populate fields automatically based on attributes.
Lets say we will test if we can write and get back user data to ...
2
votes
2answers
183 views
Grails: use of <g:select>
I am stuck on something which seems really simple, but apparently is not :)
Thanks in advances for any help, any attempt of solution is most welcomed.
My problem is the following:
My .gsp view:
...
2
votes
3answers
476 views
Trying to use json file and Getjson to populate <li> with img src
This is what I have so far. I'm trying to parse json file and grab img path and width get the return for each record in GETJson json and append to "Gallery" Inside an unordered list with a class ...
2
votes
2answers
122 views
.net: Do you prefer populating a datatable when retrieving data from database or populating a generic list of your own custom object?
which senario do you prefer when you're retrieving data from database?
1 - Populating a datatable and then bind a datagridview to it?
OR
2- populating a genric list of your own custom object and ...
2
votes
1answer
701 views
Magento: Adding a custom EAV attribute that autopopulates with its default value on entity creation
Is there a way to add a custom EAV attribute that automatically gets set to its default value upon creation of a new entity?
I set eav_attribute.is_required to 1 and eav_attribute.default_value to 0 ...
2
votes
3answers
1k views
Populating a WPF listbox with items from an SQL (SDF) database
I have been searching on how to do this for a very long time, and I have not managed to get a straight answer on the subject, so hopefully one of you StackOverflow users will be able to help me here. ...
2
votes
2answers
467 views
Preparing Mysql Database for Joomla or PHP Website
I have a Mysql database of 500+ Real Estate Listings which I am looking to load into an empty Joomla Extension (this may apply to any PHP Script).
I have copied the structure and convention of each ...
2
votes
7answers
7k views
C# - how do I refresh DataGridView after removing rows
In my code I need to remove rows from the DataGridView after a recurring interval, and so I call the following function when a timer expires:
private void removeRows(DataGridView dgv) {
foreach ...
1
vote
1answer
63 views
Populating docbook table from xml file
Question
I am looking reasonable way to populate docbook tables from xml files. Goal is to have docbook file which contains some kind of minimal reference to data needed. When the docbook file is ...
1
vote
2answers
59 views
How do I populate a Zend Form from a Doctrine Model with Many To One relationships?
I have an entity setup called Lead which contains a car make, model, etc and this Lead is mapped by a Many to One relationship to a Client entity, which has forname, surname, etc.
i.e. A client may ...
1
vote
0answers
62 views
Data to be populated from database on change of another dropdown in struts
I am developing a web application in struts in which I have two dropdowns on change of one other value should populate from database for that I have made use of javascript and servlet.
On change of ...
1
vote
2answers
56 views
Populating a listview from a SQLite database
I have an activity where i write a name which is insert in the database. In another activity I want to put a ListView which is populated with those names which are in the database or to add the new ...
1
vote
1answer
135 views
Mongoose: Populate a populated field
I'm using MongoDB as a log keeper for my app to then sync mobile clients. I have this models set up in NodeJS:
var UserArticle = new Schema({
date: { type: Number, default: Math.round((new ...
1
vote
1answer
59 views
calling a javascript function from a ROR controller ruby
I have a function written in javascript that i would like to call (use) in my ruby on rails controller(.rb). The function dynamically creates and populates a select with optgroup
How would I go ...
1
vote
1answer
94 views
JPA OneToMany relation not automatically populated?
I have a simple OneToMany relation between Task and TaskError.
Task maps the TaskErrors:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "task", orphanRemoval = true)
private List<TaskError> ...
1
vote
1answer
63 views
Populate php array from mysql with different values for the same array index
I have a mysql DB with those column id , idUser , idCompany , idProfession for users table.
Now i would Select all those field and make an array that is build in this way :
array[idUser] = array ...
1
vote
2answers
67 views
Populating an array from another array
I would like to create an array with the first letter from each element, but I keep just getting the entire element - what am I doing wrong?
def each_group_by_first_letter
self.each do |x|
...
1
vote
1answer
59 views
Populating dropdown list with JSON data using 2 views/documents
I'm having some trouble populating a dropdownlist with some JSON data, i suspect that the error occurs because of the way im appending the $.post within the #stuff div, but i've tried this a couple of ...
1
vote
1answer
63 views
Perforce cmd line option to populate workspace
I am new to Perforce and have some experience using ClearCase earlier. I am using a Windows XP client and trying to set up my perforce client/workspace.
The Perforce view I have has mappings of type:
...
1
vote
1answer
53 views
PHP DOM: populating values in XML data
$xml = new DOMDocument();
$xml_store_inventory = $xml->createElement('store-inventory'); // highest layer
$xml_item = $xml->createElement('item');
$xml_quantity = ...
1
vote
3answers
2k views
Populating combo-box dynamically with mysql table values , using php and javascript
I want to populate a combo-box on runtime with mysql table values, conditionally, on the basis of a value selected in another combo-box . Can this be implemented by only using PHP, or will i need some ...
1
vote
2answers
179 views
Populating a cell in a dataGrid with multiple values seperated by commas - Flex
I have an XML file with this data.
<resultSet>
<MerchandiseAssortmentCategory>
...
1
vote
1answer
192 views
Dynamically populate object properties with dictionary values
In Objective-C, I have a dictionary:
firstName -> John
lastName -> Smith
age -> 34
and an object Person that has corresponding instance variables and properties (that handle memory ...
1
vote
1answer
95 views
django user to be populated in LDAP
I would like when a user creates an account in Django, that the user information :
- Username
- Password
- Email
- First and Last Name
- Mobile
Gets also populated in my LDAP server. Also when the ...
1
vote
2answers
425 views
cellForRowAtIndexPath is not being called on iOS-tableView remains empty
I want to display the contents of an array in the tableView but the control never comes into cellForRowAtIndexPath. This method is where I add
cell.textLabel.text = [self.itemArray indexPath.row];
...
1
vote
1answer
130 views
Populating catalogs in Google App Engine
I'm new using Google App Engine and I want to pre-populate catalogs before to go production.
Catalogs like:
- Role (role_key,role_description)
- Country (county_key,description)
- etc.
If I was ...
1
vote
1answer
573 views
Auto populate based on dropdown selected, need help
How can I auto populate the data from db by dropdown selected?
and my dropdown result already appear as well, the code as following:
<?php
echo '<tr>
...
1
vote
2answers
329 views
Zend Form Displays Htmlentities instead of accents when populated
couldn't find a solution for this weird problem.
I've got a Zend_Form that is populated with the data from a Mysql database.
I've got everything setup for UTF-8
resources.db.params.charset = "UTF8" ...
1
vote
1answer
70 views
Populate the whole window menu path when clicking a row in a grid in a PowerBuilder application
I am using PB 10.5.2 and I have made an application in which, when I open a form and retrieve some data in a DataWindow grid, by double-clicking any row, I want to populate the whole window menu path ...
1
vote
1answer
214 views
Populate a JComboBox with file names of a specific directory
I want to populate a JComboBox with file names of a directory. Then, if selected, each field has to show a JList. How can i implement this?
Thanks
1
vote
3answers
325 views
C# - which event to populate a combobox before it's visible?
I'm currently updating it on click, but this results in the user being able to see the repopulation occur. Which other event can I use which will allow me to handle it myself, then show the combobox ...
1
vote
1answer
101 views
Populate controls auto-magically from an Entity Framework Context query
I have the following code:
IList<AccountMember> query;
using (DBEntities context = new DBEntities())
{
Guid ModifyUser = new Guid(Session["ModifyUser"].ToString());
query = (from ...
1
vote
3answers
169 views
Populating Websites form fields
Say if i have a filed out form with all the data infront of me, but i want to take all that data and pre populate a form on another website is this possible or am i asking for miracles?
Basically i ...
1
vote
2answers
427 views
How to know when an Android ListView is done being populated
I have a child Activity that contains a ListView. This Activity is populated asynchronously from a SQLite cursor. The list items contain a TextView, a RadioButton, and a normal Button. The XML is ...
1
vote
3answers
2k views
Zend Framework: Populating DB data to a Zend Form dropdown element
I have the following form:
<?php
class Application_Form_RegistrationForm extends Zend_Form{
public function init(){
$country = $this->createElement('select', 'country');
...
1
vote
1answer
487 views
Most efficient way to populate array from database values?
If I wanted to get a list of product_ids with a certain brand. I would do this:
$id_list = array();
$qry = 'SELECT product_id FROM products WHERE product_brand = :brand';
$STH = ...
1
vote
2answers
2k views
Populate drop down list from array using JQuery
Assuming I have this array:
Array(
[0] => Array(
[Brand] => 'Toyota',
[Model] => 'Camry',
[Color] => 'Red',
...
1
vote
2answers
539 views
Ajax - How Do I Populate a Hidden Field?
I'm new to Ajax. I'd like to populate a hidden field on a form with a responseText from the server. I'm able to display the responseText in the HTML as an innerHTML. I'm just unsure how to populate ...
1
vote
2answers
791 views
jqGrid: new data property in 3.7 — is there a setData method?
My app populates a jqGrid, over and over again, with the results of many different queries the user may make; the queries take the form: give me title, documentCategory, hits, documentType for all ...
1
vote
3answers
959 views
How do I populate jcombobox from a textfile?
I would like to be able to populate a jcombobox from a textfile. I am using NetBeans 6.9. Any suggestions would be appreciated. Thanks.
1
vote
1answer
95 views
Populating XML file in PHP
Currently, a friend of mine is wanting a Flash Gallery and the ability to upload files. I don't have the time of day to teach him where to edit the XML properly or dare I even give him FTP access.
He ...
1
vote
1answer
1k views
Populating data in multiple cascading dropdown boxes in Access 2007
I've been assigned the task to design a temporary customer tracking system in MS Access 2007 (sheeeesh!). The tables and relationships have all been setup successfully. But I'm running into a minor ...
1
vote
2answers
2k views
Zend: How to populate data to checkboxes?
I am working on zend. I have a form with some checkboxes. I want to get data from database and populate this data to this form. If '1' is stored in table field then tick the check box otherwise leave ...
1
vote
2answers
758 views
Best strategy to initially populate a Grails database backend
I'd like to know your approach/experiences when it's time to initially populate the Grails DB that will hold your app data. Assuming you have CSVs with data, is is "safer" to create a script (with ...
1
vote
4answers
1k views
Populating a list dynamically (jQuery)
<ul>
<li>item x</li>
<li>item y</li>
<li>item z</li>
</ul>
<a href="#">Populate</a>
I want to duplicate (copy and append) all ...