In computer science a field is a smaller piece of data from a larger collection.
1
vote
2answers
19 views
Php image post into image field scripting
I'm struggling on letting the user upload and image to an image field on the HTML doc. When i test it, i can select which image to upload and then click "UPLOAD" but it doesn't go anywhere or go to ...
0
votes
1answer
12 views
Date field validation in SharePoint 2007
I need to limit the Date field in a SharePoint 2007 list so the users can enter date from today and up to year after. How can i do it?
0
votes
3answers
31 views
Create total calculation of multiple span elements
I am trying to create a calculator that takes the value of an input field (quantity) that is then used in a formula and output into a span element (cubics). This is all working. Please see my ...
2
votes
4answers
66 views
Keeping first character in string, in a specific single field
I am trying to remove all but the first character of a specific field in a .tab file. I want to keep only first character in fields 10 and 11.
Normally the fields have 35 characters in them, so I ...
-1
votes
0answers
4 views
How do I add a content editable field that is permanently stored on a page?
I need to create a content editable field to input this code:
<div style="width: 780px; height: 1480px; overflow: hidden;"><iframe width="780" height="1480" style="position: relative; left: ...
0
votes
2answers
38 views
How do I make text field to be hidden?
I'd like to create a text field with iTextSharp that is not visible. Here's code I'm using to create a textfield:
TextField field = new iTextSharp.text.pdf.TextField(writer, new ...
0
votes
1answer
30 views
Unable to access Hidden Field value in server side
I have a hidden field for which I assign value in javascript like so.
var rowIndex;
function GetSelectedRow(lnk) {
var row = lnk.parentNode.parentNode;
rowIndex = row.rowIndex ...
0
votes
2answers
42 views
VBScript to color input text field
I have the below code.
I have an input text field which has an example value grey colored. When clicking on the field, the text is erased and color is set to black. Then, after it finishes some ...
0
votes
1answer
32 views
Different Custom Fields in Vaadin Table
I've a vaadin table backed by CrudBeanItemContainer:
CrudBeanItemContainer<MyBean> beanItemContainer = new CrudBeanItemContainer<MyBean>(
MyBean.class, getTableFields());
for ...
0
votes
1answer
13 views
Sphinx create attribute for mysql primary key auto increment id
I am trying to create sphinx index for same copy for my mysql table but there i got a error for my auto increment id. So i can't create a same field name of auto increment id.
Error:
WARNING: ...
-3
votes
2answers
21 views
PHP Auto_inc form [closed]
I have a form with an auto_inc field. The form on submit creates in the table the tuple - with the auto_inc field. What I then need to do is pull the auto_inc field back into the form for processing ...
0
votes
0answers
11 views
add a new field to phpbb3 forum
I am trying to add new field on the create a new forum section on phpbb, I have added the text field and also added the field in database too. I am not sure, where else the field name should be added ...
0
votes
0answers
4 views
Pre-populating a form field with HTML
I would like to pre-populate this form:
https://npo1.networkforgood.org/Donate/Donate.aspx?npoSubscriptionId=1006493
Specifically one field.
<input ...
0
votes
0answers
8 views
Can't login into facebook messages and pages
I just got the htc one x+ but I can't login into eather facebook messages or pages. It says "something went wrong. please try again" I've seen others have the same problem for some years ago but ...
0
votes
1answer
9 views
Mysql field convert not displaying other fields in table
I have a table with two fields I have been supplied the solution for the field that converts the mac address field.
MY ORIGINAL STATEMENT is the following:
SELECT INET_NTOA(ip_address) AS ...
0
votes
0answers
33 views
Behat/Mink Test Case Issue: Filling fields not belong to a form
When writing test cases for my Symfony2 application using Behat/mink, I ran into an issue with filling out text fields not belonging to forms while executing the test case.
For example, if I had an ...
0
votes
0answers
7 views
How to add an unselected item to a field:select in Spring MVC?
I'm trying of add a "field:select to a form without an item selected in my .jspx file, using Spring MVC, but I can't get it. I need to add a first item empty or with a phrase like "--- Select an ...
-1
votes
2answers
58 views
(object) is a Field but is used like a 'method'
When running this code i get the error:
Error 1 'EPSInvoice_ServiceLibrary.EPS_Service.tr_bl' is a 'field' but is used like a 'method'
It worked fine in VS.net but i'm converting to C#.
Any ...
3
votes
1answer
40 views
increment row number when value of field changes in Oracle
I need help in writing a query in Oracle for the following data. The data is sorted by Person and Day fields.
Person Day Flag
------ --- ----
person1 day1 Y
person1 ...
0
votes
0answers
20 views
Compare sharepoint membership with value
I must customize a list view. I must create a query to filter items of the list. A part of the query is about to check if current user is an administrator.
I would like something like this:
...
0
votes
1answer
27 views
Get the right field from an abstract class hierarchy?
I have an Abstract class A
public abstract class A{
private int x;
public void doSomethingToX{...};
public int getX(){
return x;
}
I have 7 classes that extend A, each of the 7 ...
0
votes
2answers
26 views
Modifying a field on a prototype from a child object
This is a problem of cleanliness.
I'm using prototypes to implement basic inheritance to keep my code DRY, I have a few prototypes which are for all intents and purposes abstract (it is not expected ...
0
votes
3answers
13 views
What is a good name for a Date field
Which of these do you think are the best names for date fields?
createdOn/updatedOn
createdDate/updatedDate
creationDate/updatationDate
Other options? Thank you!
1
vote
1answer
33 views
How to split value from mysql query in php
i'm a newbie in php and Mysql.
I've got a table called 'cat_filter' done like this
cat_filter_id cat_filter_value cat_filter_name categories_id
5 Colore Metallo Bianco ...
0
votes
0answers
11 views
Sharepoint Designer Set Task Field drop-down is showing empty [migrated]
Using SPD 2010 I created an Approval process. I have added few custom field to my task list and now under "Before Task is assigned", the action "Set Task field" is not showing anything on the ...
1
vote
2answers
45 views
Create Magento Backend Field ReadOnly
I would like to create a read-only field in the backend at the client's Magento.
create fields to know (through a module) is as follows:
$installer->addAttribute("customer", "attrcode", array(
...
1
vote
0answers
29 views
Temporary fields in Firebird
Is there temporary fields in Firebird 2.5? When I:
INSERT INTO table (..., tmp, ...) (..., val, ...)
I need something like this in before-insert trigger:
...
new.field1=(SELECT t2.id FROM table2 ...
0
votes
1answer
25 views
Typo3 6.0 - Extending EXT:news
I am new in Typo3, and I tried to extend News following this tutorial : http://docs.typo3.org/typo3cms/extensions/news/Main/Tutorial/ExtendingNews/Index.html
My main goal is to create a new ...
0
votes
1answer
15 views
Author of a particular field - which user modified the field
Is it possible in Drupal to find out which user modified a particular field? Not just the whole node. After saving the content I want to display the author name next to that field.
Not sure if this ...
0
votes
2answers
56 views
How to compare two fields from two arrays - Perl
I have two different arrays (@first, @second, for exemple) and I wanna compare $first[2] to $second[4]. If there is a match, then I'm gonna print some things. I'm new on Perl, and I thought this was ...
0
votes
2answers
52 views
Go back to dynamic form after submit
I've got a form like this:
<form action="" method="POST">
<input type="text" value="name[]">
<input type="submit">
</form>
<a href="#" id="add">Add ...
0
votes
0answers
30 views
how get value of javascript dynamically added text field
I wrote the following code to create the required fields. But I can not send a fields value.
Named fields within the Javascript code do. I want to send through PHP, but I can not.
<script>
...
0
votes
0answers
11 views
Word 2010 creating a field that when changed updates entire document
One of the best features I have found in Word is the ability to put in document properties like "Title" into the document. Once inserted the user can modify the property directly within the Word doc ...
0
votes
1answer
39 views
MongoDB & CodeIgniter: Select where a field exists
I'm working with Codeigniter and the MongoDb library.
I would like to perform a select where a field exists.
db.yourcollection.find({ 'otherInfo.text' : { '$exists' : true }})
But I can't find how ...
1
vote
3answers
50 views
this.getClass().getFields().length; always returns 0 [duplicate]
I am trying to get the number of fields in a particular class. However the technique I am using is not working and always returns 0:
this.getClass().getFields().length;
How do I get the field ...
1
vote
0answers
27 views
Django: Insert choice is neglected in form init
In my model, I have a CharField with a few choices:
SURFACE_CHOICES = (
('as', _('Asphalt')),
('co', _('Concrete')),
('ot', _('Other')), )
surface = ...
1
vote
2answers
33 views
modify only one column of a big file and keep field seperator the same in unix
I have a very big file (more than 10000 columns). I would like to change 3 entries in the second column and keep anything else the same, including the field separator.
For example:
ab123\t123\t0.1
...
1
vote
2answers
25 views
How can I boost certain fields over others in elasticsearch?
My goal is to apply the boost to field "name" (see example below), but I have two problems when I search for "john":
search is also matching {name: "dany", message: "hi bob"} when name is "dany" and
...
0
votes
2answers
61 views
While read line, awk $line and write to variable
I am trying to split a file into different smaller files depending on the value of the fifth field. A very nice way to do this was already suggested and also here.
However, I am trying to incorporate ...
-1
votes
2answers
23 views
Changing all data in mysql database
What would be the sql statement to change the value of order_status field to 3 of all order_id that are between 1 and 700.
Mysql Database name is test_test
Thanks for any help.
1
vote
2answers
76 views
OpenCart adding “informational” field in admin
I am looking for a way to add a field in the admin for my information pages. I just need it in the admin and not looking to show any data from the field on front end.
To explain better the list page ...
1
vote
2answers
35 views
Projecting specified fields within an array in MongoDB (missing ] error?)
In MongoDB, I understand that to project only specified fields in a collection, I would execute:
db.collection.find({}, {"field1": 1, "field2": 1})
But what would I do if I wanted to only project ...
0
votes
0answers
13 views
multimedia library ER design
I'm working on a multimedia library and there tables (auido,image,video) have same fields like ID,mediaId,TimeID and commonID. Should I create a new table for this repeating field.
These are my ...
0
votes
2answers
35 views
Hide default text in a field - Javascript?
I want that when I click on any field, the default text will be hidden and when I enter text into it and I click again the same field the text will not be hide it.
I tried this code but it doesn't ...
0
votes
2answers
95 views
How to subtract values from textbox in form from Field in table (Access '07 VBA)?
I am developing a canteen transaction system in MS Access 2007. In my "Add Food Item:" form, I have a series of textboxes and comboboxes, a button, "Add Item" and a listbox. The names of text and ...
0
votes
4answers
41 views
jQuery - passing input field to hidden input value
Im trying to use the jQuery .change function to get an input field value:
<input type="text" name="qty2" id="qty2" maxlength="12" title="QtyField" class="input-text qty2">
to apply it to ...
0
votes
1answer
29 views
Getting FormPanel's field values
I'm having problems with getting the value of the fields coming from a FormPanel. Theonly thing I get is the image included in the form here is the servlet code, I'm using Apache Commons:
// ...
0
votes
0answers
22 views
Pull first value in a field
Hello I am working with Drupal 7. I use the following code to pull the content from a field.
global $user;
$user_data = user_load($user->uid);
$items = field_get_items('user', $user_data, ...
0
votes
1answer
43 views
Lucene 4.2 analyzer while indexing fields
I am trying to index a set of documents using Lucene 4.2. I've created a custom analyzer, that doesn't tokenize and doesn't lowercase the terms, with the following code:
public class ...
0
votes
3answers
72 views
Activate input field from input checkbox
I want to activate the input field from checking the checkbox.
I have a basic form here:
<ul>
<li>
<label id="form-title" for="name3">Specifics:</label>
<li>
...


