The fieldtype tag has no wiki summary.
0
votes
1answer
15 views
Why doesn't all characters fit into new TEXT field in new table in MySQL?
I aggregate several texts from varchar(140) with GROUP_CONCAT fields in MySQL into a new table. Automatically the new field becomes of field type TEXT which according to the documentation should hold ...
0
votes
1answer
171 views
Symfony: Make a datetime form field really read-only
I marked a datetime form field as read_only. Since this seams to have no effect I overruled the default twig template. This works fine.
{% block datetime_widget %}
{% if read_only %}
{{ ...
0
votes
0answers
64 views
solr-datetime field
Date and time is not being displayed properly, It goes to the next line after year and month, see following:
"createdDate":"2012-12-
21T21:34:51Z"
in my schema:
<field name="createdDate" ...
0
votes
2answers
49 views
MySQL field type for specific point in time
I am in need of a MySQL column that can store a specific date in time. The application I am working with gives me a UNIX timestamp (seconds that have elapsed since January 1, 1970). I need to store ...
0
votes
1answer
177 views
Symfony2 collection field by_reference=false vs. setter
I have a form with a field for tags. Tags is a Doctrine ArrayCollection on the bound entity. The field is by_reference=false as the doc suggested, but binding the form to the entity behaves illegally ...
0
votes
1answer
125 views
solr fieldtype string or tokenizer
I need to search for a specific field using tokenizers and by string. I'll use tokenizer only if no result were found for the string one. Is there any way to do that?
0
votes
1answer
28 views
Determine mysql submitted values from default values
I have a mysql table that has an integer column. If no value was submitted, the database defaulted to 0 (zero). Unfortunately this conflicts with what we need as no value should have been stored as ...
0
votes
1answer
559 views
How to change the field type of some fields in D7 after a migrate
I would like to find out how to change the field type of fields in D7. I have just migrated from D6, and some of my imagefields are wrongly converted into file fields.
Some of my text fields are also ...
0
votes
1answer
381 views
Getting the actual type from reflection fieldInfo
I'm writing a generic wrapper around a software's GUI API which has the ability to process quite a few of its own 'built-in' types but I can't figure out how to get it what it needs. For example, I'm ...
0
votes
2answers
285 views
Solr - Find whole numberin float field
I need some guidance on how to properly index a field representing money.
I need 130 to match 130.64. I tried the trie float configuration below.
<fieldType name="float" ...
0
votes
1answer
803 views
Solr analyzer default type
For the definition below, what is the default type of the analyzer? Is the definition assumed for both query and index analyzers?
<fieldType name="text_nicesort" class="solr.TextField" ...
1
vote
2answers
333 views
Deploying a Custom Field Types to the bin directory
As stated here custom field types (and any dlls they have a reference to?) must be deployed to the global assembly cache. Why, and what problems may arise by deploying to the bin directory? I’m ...
1
vote
1answer
2k views
what is RowOrdinal property in Sharepoint FieldType Definition
In Sharepoint it is not possible to add more than 16 Lookup-Fields to a single list.
This limit is explained here: http://support.microsoft.com/?scid=kb%3Ben-us%3B823555&x=6&y=5
I found a ...