Fields may refer to named instance variables contained within a class which are used to encapsulate data or columns of a table within a relational database.
1
vote
2answers
21 views
How to use JavaScript to Require a Ratio of Completed Fields in a Form
I'm looking for a way to use JavaScript to require a specific ratio of fields in a form to be complete. So if I have six fields and the user has to complete any 2/6 to submit. If not then they receive ...
1
vote
1answer
6 views
Joomla 3 - insert custom field in article editor
I inserted a custom field in the article edit page in the administration - I changed two files:
In /administrator/components/com_content/models/forms/article.xml
I added a field subtitle
<field ...
-1
votes
0answers
13 views
Using Foreign Key to Add Fields
I have a MYSQL table (users) that I can't add columns to because the table is used by the Joomla CMS and will make it a pain in the butt when I update Joomla... So I was going to create another table ...
0
votes
1answer
20 views
Sencha: Set Dataview XTemplate when created dinamically
i have some data that i'm getting from the server that depending on the situation may bring different fields, so what i have is this:
//This is the way i'm attaching the newly created template to ...
0
votes
2answers
29 views
JavaScript property & field reflection
I came across this little snippet of code for property reflection in JavaScript:
function GetProperties(obj) {
var result = [];
for (var prop in obj) {
if (typeof obj[prop] !== ...
0
votes
0answers
11 views
Combine 2 field information to 1 field with VBA Access 2007
I use access 2007
I have 1 table wich is called 'Planning'
In this table is a field called 'history'. In this field (Memofield) I keep track of all things that are happened to 1 item.
I also have a ...
0
votes
2answers
20 views
where clause with multiple fields : Arcgis api for javascript
I am tring to perform a query with three fields .I have three combobox,each one is populated with a field values.I want to query with the value selected from combobox for each field.I want to know how ...
1
vote
1answer
19 views
MySQL get sum of fields which rows refer to the two records in another table in between selected rows
Sorry about the vague title, but I'm not quite sure how to name this procedure. So the problem is I have two tables. First one represents train stations and their order:
station_id | station_name
1 ...
0
votes
0answers
18 views
Copying only some fields to new record in VBA access 2010 [closed]
i am trying to make a button in a form (form for entering new items) that makes new record and copy from the previous one some of the fields and let me fill the rest.
how can i do at?
0
votes
1answer
33 views
send other things alongside the data with GCM using php
I am sending android push notifications using php (curl).
Below is my class that sends the notification.
public function send_notification($registatoin_ids, $message)
{
include_once 'config.php';
...
0
votes
1answer
29 views
Wordpress user profile display name - change from selectbox to textbox
Im trying to change the user profile "Display name publicly as" from a select box to a textbox. Any ideas on how this can be done? Couldnt find anything all all.
0
votes
0answers
29 views
Eclipse: Blockwise field alignment with Java Code Formatter
I am using the code formatter and want a special form of alignment for fields.
I am not too happy with the option "align fields in columns". I don't like that all fields are aligned the same way, ...
0
votes
0answers
19 views
Programmatically find data in all Drupal 6 fields that uses a WYSIWYG editor
I am in need of programmatically going through through every field in a multi-language Drupal 6 site and find any files used (as images, or as links) and store them in an array. The script is only ...
2
votes
1answer
78 views
Align GXT form:FieldLabel with its gwt:Label widget
GXT 3.x only.
Let us say I wish to create a gxt field-pair of the layout
label: value
For example,
Name: Carthyguessue
Where "Carthyguessue" is a constant field not updateable by user, ...
0
votes
1answer
35 views
Interface Variables
public interface A
{
public final int a = 0;
}
Many books say that all variables (constants) in an interface are implicitly public static final yet when I type the above statement explicitly ...
-4
votes
0answers
14 views
XML import into drupal, how do I export into jquery? [closed]
I am using Drupal 7 , Jquery and XML, How Do I populate jquery banners, with xml? Do I use fields to publish to xml to jquery? How do I get xml into jquery?
0
votes
0answers
41 views
Android PayPalPayment - Sometimes : Please make sure all fields have been entered
I try to implement in my app a payment via PayPal. The code is :
PayPalPayment payPalPayment = new PayPalPayment();
payPalPayment.setCurrencyType("EUR");
payPalPayment.setSubtotal(new ...
0
votes
2answers
50 views
WP magic fields query_posts
I'm trying to display titles from posts of type 'products' with that have a custom field "product_category" (dropdown) with value "food".
When the "food" field is set to type "text" everything is ...
0
votes
0answers
26 views
Fields not shown in subreport when called from VB.Net 2010
I have a report with four subreports, Crystal Reports X1. The VB.Net 2010 program displays this report generally OK. One of subreports, based on extracting three string fields from a table with no ...
0
votes
0answers
38 views
Jquery - Disabling text field and re enabling fields
Is there a jquery function to limit one submission on a text field once it has been submitted? And once the user deletes the existing information in that field should they change their mind, the ...
0
votes
0answers
15 views
Reuse in Android - why can I not set a repeating alarm and cancel it using the same instance of a PendingIntent?
When binding onClick in activity_main.xml to setAlarm to one button and unsetAlarm to another button in the same activity, the following code will not let you unset the alarm when clicking the button ...
0
votes
3answers
93 views
C# class members access
C# class data members(fields or properties) can either be private or public or protected.
What if I want a private field for member methods use only and not to expose to the outside world?
I can ...
0
votes
0answers
11 views
how to compare two fields in python
I have a very basic question in python. I want to go through each line of the a csv file and compare to see if the first field of line 1 is same as first field of next line and so on. If it finds a ...
0
votes
1answer
92 views
Access 2013: copy data to Excel and print (VBA)
I'd like a button that, when clicked, copies data from "field1" and "field2" into an Excel spreadsheet to "field 3" and "field 4" and prints the outcome.
Basically, once someone places an order and I ...
2
votes
1answer
40 views
Is it possible to use clojure's gen-class macro to generate a class with static fields?
Can the following class be generated using Clojure's gen-class macro?
public class Test {
public static final String TEST_NAME = "This test's name.";
}
If not, why not?
0
votes
1answer
38 views
Showing Django model field in HTML
I was wondering how to display a field that I have into an HTML output.
I have this class in my model.py
class Tower(models.Model):
ap = models.IntegerField()
And I wanted to display the value ...
4
votes
2answers
99 views
How to get values from a dynamic array type field
I have a problem regarding dynamically generated fields. These fields have different types and their type depends on what is stored on my db (text, select, radio, etc.). They are generated in my PHP ...
0
votes
1answer
57 views
DateTime field OpenErp
I need a field that can contain a number and text on it, like for example "6 months", i've used the datetime field, but it only takes a formatted date on it, and if use integer or float it takes a ...
1
vote
2answers
23 views
PHP Form not posting all fields
I have a strange issue that I cannot get my head around.
I have the following form and when I click submit I do not GET or POST all fields in the form. Only two fields are being picked up being - ...
0
votes
0answers
48 views
How can I use Selenium IDE to populate dynamically named fields?
I am using Selenium to populate a set of templates, in this case a dropdown field with multiple selections.
However, some of the fields in those templates get dynamically named where the field id ...
0
votes
1answer
230 views
Selenium Webdriver is sending Keys, but no text is displaying in the fields
I'm using selenium webdriver Chrome. I'm seeing something so odd. I'm testing a sign up account. Webdriver is going to each field and it looks like it is input-ing text, but nothing is being ...
0
votes
0answers
46 views
using .NET Interop with Word-inserting fields into footer
I have written code that allows me to insert a field into the footer, this field will insert the document ID. The trouble I am having is:
When I insert this new field it will delete everything else ...
0
votes
3answers
49 views
C# Using a Struct to insert fields and records?
I want to insert some fields and records into a file I created using a struct. I'm not sure if I asking the question in a right way but here is the code I wrote:
struct Student
{
public string ...
1
vote
1answer
51 views
C# How to create a file contains 4 fields or more with records? [closed]
I have this code to create a file called "SomeFile.txt"
FileStream fsw = new FileStream("SomeFile.txt", FileMode.Append, FileAccess.Write);
I want to know how to insert 4 fields and about 10 ...
0
votes
0answers
47 views
Wordpress Advanced Custom Fields Array to List Wrapped in HTML
I am using wordpress + advanced custom fields
I have a multiple selection checkbox for items from 1-10.
I need to have it so the return array will show a list of the items in bold and with breaks.
...
0
votes
0answers
32 views
website form work in IE but does not work in Chrome browser
I am not much of an expert, but noticed my website form fields submit in IE but not with Chrome/firefox browser. In Chrome/firefox the form field boxes are disabled for selection or email and name ...
-1
votes
1answer
44 views
Syntax-error: Non keyword-arg after keyword arg - OpenErp
I got this error
Client Traceback (most recent call last):
File "C:\Program Files\OpenERP 7.0-20130321-002353\Server\server\openerp\addons\web\http.py", line 203, in dispatch
File "C:\Program ...
1
vote
0answers
69 views
Seperating fields out of a string in Hive
I have the following problem...
I work with Hive and want to add a file with several (different) rows of Strings. Those contain fields with a fixed size, like this:
A20130420bcd 34 fgh
where ...
-1
votes
0answers
17 views
Which is more correct - “Form Fields” or “Form Elements” to refer to items on an online form? [closed]
In the past I always thought "form fields" is the correct way to describe the parts of an online form such as a radio button or a text area.
Now I started seeing "form elements" being used more ...
2
votes
2answers
74 views
What is the difference between these two fields / methods?
I've started working with classes in C++ and I found two different declarations of fields:
type ClassName::*var;
and
type *ClassName::var;
What is the difference between them?
EDIT: One more ...
0
votes
1answer
80 views
Renaming Checkbox Fields with itext Sharp
im am trying to rename fields in itext. I can successfully rename textfields, but i am getting errors renaming checkboxfields. Here is the code so far:
try {
pdfReader = new ...
0
votes
1answer
56 views
No field names CSV Reader Python UTF-8
So I'm trying to open and read csv file that has no field names. Based on the research I've done, I'm pretty sure it's encoded in UTF-8. My csv has this formatting:
...
0
votes
0answers
26 views
Wordpress Custom Page Template with “fill in the Blank” Options
I am currently developing a page template for a Wordpress site and am trying to figure out how to create a Wordpress page template that can be created by filling in a few blank fields with text and ...
2
votes
2answers
83 views
Orchard - Search & Indexing issue
I have a project completed with Orchard CMS. The all functionalities are implemented through modules. Search module was also working till a few days ago, but suddenly it is stopped to working, ...
0
votes
4answers
71 views
Java constructor basics: objects and fields with no current value
I have a couple of questions about constructors in Java:
How are you supposed to initialise/create objects that the class relies on? For example, I have a DateTime object in my 'time' class. Should ...
0
votes
3answers
38 views
Charity Website - Is it possible to prepopulate input fields on Site B by submitting a form on Site A?
I am wondering if it's possible to have a user visit my website (Site A) and fill out a form that has first name, last name, email and a submit button. When the user hits submit, that information is ...
3
votes
7answers
102 views
Java - Is it ok to have a method that passes private field values into another class' method?
I have a class with a bunch of fields, all private (subclasses access a few with protected getters). I need to pass most of those fields into a method in another class that will format them and ...
0
votes
0answers
38 views
Data from SQL database sometimes not showing in fields
I hope someone can help
I'm using VB.net to basically allow a user to enter some data which gets saved to a SQL database.
Now when I search for a certain record it brings the data back and displays ...
0
votes
5answers
78 views
Java - protected 'getters' vs. nested classes
If I have a bunch of fields in a parent class that all need to be inherited by subclasses, is it better to have the subclasses nested in the superclass, make the fields protected rather than private, ...
0
votes
0answers
62 views
SmartGwt Calendar custom add/edit event with SelectItem
I'm having trouble placing a bound to a data source SelectItem form item inside the add event window. I need this approach to associate to each calendar event a person from the address book. If the ...




