TYPO3 add tables value - typo3

does somebody know if a user can select on TYPO3 7.6.6 page, multiple values, like price of anything and sum it automatically? Or still exists an extension for those requirements?
I am thankfull for any hint.
Thanks in advance
ayhan

Related

Select query for search with 2 or more words without double quotes against more than one field in solr

Please refer My previous question .
With respect to the this answer for my question, I could do with one filed.
I Could not able to do with multiple fields.
http://$solr_host:8983/solr/magazines/select&q=sport+education&df=title&q.op=OR - this is working for one field. How can I do it for multiple field.
What is the right way to achieve my objective. Thank you in advance.
Use Dismax/eDismax with qf (Query Fields) Parameter.
example:
http://$solr_host:8983/solr/magazines/select&q=sport+education&defType=edismax&qf=title name&q.op=OR
Check this here

TYPO3 / Formhandler / Make formhandler records editable?

Is it possible to make formhandler records editable and even show and sort by
- lets say - name and lastname in TYPO3 BE?
Thanks in advance.
I lately made a dummy extbase extension for a customer. Formhandler stores its data in these tables. Thus they are accessible as usual in the backend. They are sortable and editable and anything you like.
Have a look at http://typo3blogger.de/newsletteranmeldung-mit-formhandler-turchen-14/ There I have created an example how to create records in TYPO3 with formhandler and Finisher_DB. In newer versions please use Finisher\DB
Here are all properties of the Finisher\DB of formhandler:
http://www.typo3-formhandler.com/documentation/finisher/finisherdb/
Use ifIsEmpty to fill up fields with a default value. F.e. if you don't have this field in your form.
at http://pi-phi.de/formhandler.html I documented (in german) how I used formhandler to generate tt_news records with categories.
the tt_news records needs a confirmation of an admin, so the admin gets a mail

Manual sorting of sys_category

On my TYPO3 7 site, i'm not able to choose an order to the categories of a page or a news (plugin tx_news). I can only choose what categories that page or news have, using the checkboxes to select them.
Is there any configuration for that?
Alternatively, I may override these fields with my own TCA, but have no ideas on how to get a sorting tree of categories. Any hint?
On my sites running previous TYPO3 versions with tt_news plugin, its category tree allows to change the sorting after selecting the categories.
I coudn't find anything about it on the "select" documentation (https://docs.typo3.org/typo3cms/TCAReference/Reference/Columns/Select/Index.html). Looks like MM relations doesn't support sorting.
Does anyone knows how to get it?
Make sure you have the "extended view" checked at the end of the page. You can then sort the sys_category-entries using the up/down arrows.
If you need to sort your categories per item and not globally then a default MM relation will not work as it doesn't support sorting. You're on the right track. Override or extend the TCA, don't specify a MM relation and don't use the tree view rendering. Use a standard select like you would select pages. This should store the values as a comma-list string in the database and so represent the sorting like you would see it the backend.

MongoID: Group and Count

Supposing I have a model Post, wich contains only the field desc.
The user can use hashtags, like #rails inside any posts...
How can I list and count the hashtags used, for example, in the last 10 days?
I'm do not know much about mongodb, but I see that I could use something called map_reduce.. have no idea why/how.
Thanks in advance.
You are right...this can be solved using mad/reduce function...
try this or this gem if you dont want to think a lot lol
https://github.com/jcoene/mongoid-mapreduce

Chained combos in register form Joomla 2.5

Good morning.
I'm using joomla 2.5, I need add extra fields to my user form registration, I use user-profile plugin and I add 2 extra fields SQL type, at this point all is ok, but I need, that this fields work like chained combo i.e: when I select a Departamento (Department) I need the field Municipio (Municipalitie) just display the Municipalities that belonging to that department.
Thanks
Since you didn't specify in which language you wanted this done in. There's a jquery plugin you could use by Mike Tuupola which does just this. You might want to check it out.