In computer science a field is a smaller piece of data from a larger collection.
1
vote
2answers
79 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
26 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
...
1
vote
2answers
35 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
...
0
votes
2answers
63 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.
18
votes
5answers
8k views
How to avoid sending input fields which are hidden by display:none to a server?
Imagine you have a form where you switch visibility of several fields. And if the field is not displayed you don't want its value to be in request.
How do you handle this situation?
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
14 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
36 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
3answers
74 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>
...
1
vote
3answers
84 views
Get name of a field
Is it possible in Java to get a name of field in string from the actual field? like:
public class mod {
@ItemID
public static ItemLinkTool linkTool;
public void xxx{
String ...
0
votes
1answer
30 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
4answers
44 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
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
44 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
1answer
5k views
Cocos2D: Writing Text and getting input from a text field
Hi I'm having a hard time figuring how to just display simple text in a Cocos2D game.
I know how to write code to show pictures and to change the current picture but that's it. Can anyone help me ...
0
votes
1answer
61 views
form post not working due to @HiddenFor in mvc3
for some reason, my form post does not work when i have the hidden field in mvc3 razor. It works fine if i remove the hidden field but i need that field.
Below are my ProductsController post method ...
0
votes
1answer
53 views
Drupal 7 - Import/Export Entity Schema with fields
After many searchs i assume there is no topic relating entity export/import for Drupal 7 entitity
I want to export my custom entities with attached fields and then import on another website all ...
3
votes
1answer
4k views
Solr 3.3.0 - Increase field weight in search - boost field priority
I'm indexing with solr 3.3.0 these docs:
<book id="bk101">
<keywords>----</keywords>
<title>----</title>
<owner>----</owner>
...
1
vote
2answers
151 views
How to create database field in Marklogic Server?
I have the following xml structure
<patent-assignors>
<patent-assignor>
<name>VOLPENHEIN, ROBERT A.</name>
<execution-date>
...
0
votes
1answer
57 views
Force JSF to bean-validate ALL fields of my bean, not only those bound to an input field
I am working with the Apache MyFaces Core 2.1 library and Hibernate Validator 5. I have a simple JavaBean with some annotations. My form with some input fields map to this JavaBean. However, if I ...
47
votes
10answers
77k views
Structure Constructor in C++?
Can a struct have a constructor in C++?
I have been trying to solve this problem but I am not getting the syntax.
0
votes
1answer
54 views
Hidden field in rails form
I have this form in a view in my project. I need to pass the task_id to a certain controller, but the log does not seem to be receiving the parameters. I don't know what the problem is.
<%= ...
0
votes
0answers
23 views
I've to pre-fill a matrix fieldtype in ExpressionEngine with a script in jQuery
I need your help.
I'm trying to write a script that will be integrated in ExpressionEngine entry form.
I've done all the required stuff. But now i can't go on.
This is the starting point.
...
0
votes
0answers
60 views
Python - ORM - Object-relational mapping Error OpenErp
I never had any problems with my custom module, suddendly i got this error:
Client Traceback (most recent call last):
File "C:\Program Files\OpenERP ...
0
votes
0answers
27 views
Searching a string for a partial match against a database
I have a string "TRTGREENTE" and I also have the following values in a db
1. "BlUE"
2. "WHITE"
3. "GREEN"
n. "..."
+1 "..."
Going through every single value in the db and doing a partial match is not ...
0
votes
2answers
57 views
Inheriting product category in description field - OpenErp
I have this code for a product in my module:
_name = "purchase.requisition.line"
_description="Purchase Requisition Line"
_rec_name = 'product_id'
_columns = {
'descripcion' : ...
1
vote
3answers
66 views
How do i modify a field in a property
How do i modify a field in a property that is a struct?
For example:
using System;
using System.Collections.Generic;
namespace ConsoleApplication1
{
struct vector
{
public ...
0
votes
1answer
41 views
Django OneToOneField not selected
I'm developping in Django and I'm trying to do a form to edit some datas.
Here is my Model :
class Jewel(models.Model):
...
goldColor = models.ForeignKey(GoldColor, related_name='jewels')
...
1
vote
2answers
135 views
Django deserializer, with fields set as serialize=False
[edit: using django-1.1.1]
Hello,
I'm using django classes that store a blob (a string b64 encoded more exactly) corresponding to an icon for the object.
I serialize the objects as json to ...
1
vote
2answers
185 views
ASP.NET Required Field Validator not working
Hi all I need a required field validator for my textbox..This is my textbox..
<asp:TextBox ID="txtTimeSlotGroupName" runat="server" AutoPostBack="false" ...
-3
votes
2answers
59 views
Java static fields not working with inheritance
Alright, this is probably something simple, but I just can't get it.
package foo.foo.foo;
public class Vars {
public static boolean foo = false;
}
Alright, so that's my Vars class.
I then ...
0
votes
1answer
37 views
FIND THE LAST REGISTER ON A TABLE SQL
I have this:
Table CLIENT:
CLI_ID STUDENT
1 name1
2 name2
3 name3
Table UNIVERSITY:
UNIV_ID CLI_ID NAME
1...........1 harvard (2012)
2...........1 ...
0
votes
1answer
61 views
How to resize input field
I'm trying to make my input field resizable, but the code I found doesn't work anymore.
#mededeling
{
resize: both;
}
Does anybody know the most recent working code?
25
votes
6answers
11k views
How to update only one field using Entity Framework?
Here's the table
Users
UserId
UserName
Password
EmailAddress
and the code..
public void ChangePassword(int userId, string password){
//code to update the password..
}
2
votes
1answer
2k views
SugarCRM: Coding a Custom Middle Name field
I'm trying to create a Custom Field in SugarOS 6 to store Middle Names. Designing and implementing the field in EditView was easy enough with the Studio. But I'm stuck when it comes to displaying the ...
0
votes
0answers
123 views
MYSQL: How to insert NULL values in Foreign Key field
How can I insert a null value in foreign key field using MySql database
I have the following data model and environment is, Hibernate 3.0(with annotations) and MySQL 5.5
I am trying to insert a ...
0
votes
1answer
41 views
How to perform a map reduce in MongoDB with a colon in the field name?
I have got the following problem:
In MongoDB I have fields with a colon in the name.
To address a field I would normally use:
var map = function() {
emit(this._id, this.sth.field);
}
...
0
votes
0answers
27 views
Create an external data field in sharepoint from visual studio
i would like to create an external data column in my sharepoint list. I know how to do it from sharepoint and sharepoint design. Now i would like to create it from visual studio, via xml... using ...
1
vote
2answers
85 views
Eclipse Errors on XSD field “No resource type specified”
This is a follow up question on:
How to set restriction on XSD for id attributes
I use Eclipse. I created an XSD file with the answer code and I got these 3 errors:
error: Error: No resource type ...
2
votes
1answer
53 views
FireBird 2.5: Does BLR contain the related field sizes?
As I know FireBird and InterBase keeps the stored procedures and triggers in BLR (tokenized) format.
But I not really know that what contains the BLR.
Is field size the part of the BLR?
Would I get ...
0
votes
0answers
23 views
Find minimal polynomials in matlab over galois extension field [duplicate]
i want to find the minimal polynomials up to 2t where t is = 3 (for example). for any given polynomial for example u = [1 0 1 1] over GF(2.^m) field.
I have the galois 2.^m field for m = 3 in an ...
0
votes
3answers
35 views
How to successfully set a value to a field in JS? tried on.focus but no luck [closed]
Hi I'm trying to get my input field to say 'Enter your e-mail address' and when you click on it, it goes away to let the user type it. I tried playing around with on:focus and other various tips on SO ...
0
votes
2answers
59 views
Filling an input field with click on link - not working
I am trying to fill an input field by clicking on a link. The href of this link should determine what will be filled in in this input field.
$(".search_item").click(function(){
var ...
0
votes
1answer
87 views
Is it possible to let the user defines the field of matrix in haskell?
Hi guys i have been wondering how i can let the user to define the field(row,column) of matrix in haskell.
For example, the user should enter a value for the field and than the user should enter a ...
0
votes
1answer
22 views
text fade on input field, where is this being configured
i have this website im building, my client is using a template and the template has contact forms, now i cant seem to understand how to get the text fade on click for input fields to work on any ...
6
votes
3answers
280 views
Conceptual reason of the 'A field initializer cannot reference the non-static field, method, or property' CS0236 Error
C# does not allow an instance field initializer to reference another field.
For instance this code is not valid :
class A
{
string s1 = "";
string s2 = s1;
}
because "s2" references "s1".
But ...
1
vote
2answers
60 views
Abstract fields aren't allowed. How do I force a derived class to instantiate/initialize a field?
I have an abstract base class for a generic 'Device' type and would like to require the derived specific device classes to initialize a list based on their respective differences.
When one sets the ...
0
votes
2answers
45 views
Python: access structure field through its name in a string
In Scapy, I want to compare a number of header fields between any two packets a and b. This list of fields is predefined, say:
fieldsToCompare = ['tos', 'id', 'len', 'proto'] #IP header
Normally I ...
0
votes
0answers
59 views
How do I reference user-defined fields in an outlook form
My goal is to use a form that I have created on Microsoft Outlook to fill in data on an Excel Spreadsheet. There is plenty of information out there on how to copy and paste the subject, contact, and ...










