11:29:07 <justcasoer> i just updated vhs and after i updated all namespaces i get a new errormsg: Could not analyse class:FluidTYPO3\Vhs\ViewHelpers\Var\SetViewHelper maybe not loaded or no autoloader?
11:29:17 <justcasoer> can someone help mich with this one?
11:32:42 <NamelessCoder> replace v:var.set with v:variable.set (and check the change log, there are others!)
11:43:23 <justcasoer> Thank you very much! You saved my day!
11:58:57 <NamelessCoder> but that's not what you should do. Check the typolink reference what it requires as type of the "ATagParams" configuration array member then make sure you pass that format
11:59:21 <NamelessCoder> if it wants an array, you need to pass ATagParams: {class: 'button', onClick: 'something();'}
11:59:48 <NamelessCoder> if it wants a string, that string likely needs a custom format for those properties, for example 'class=button onclick=something();'
12:01:04 <Guest|65234> in doc it is said to do it like this:
12:02:26 <NamelessCoder> multiple things tell me it's not official docs, for one thing the formatting. We always put spaces between array keys and previous values
12:02:53 <NamelessCoder> the code you gave does not appear on that page
12:04:08 <Guest|65234> please could you just give me an example how to generate a vhs link with class and onclick
12:04:11 <NamelessCoder> the docs really do not say to do it that way. They say that "configuration" is supposed to be an array, can be defined inline if you wish, or come from a variable. How that array must be structured is noted in the docs the main text links to, on the official TYPO3 docs site (since we do not document that array - it is entirely TYPO3 core and also applies many other places than Fluid)
12:05:11 <NamelessCoder> that depends on how you defined that link - the TCA of buttonListObject.item.link.
12:05:28 <NamelessCoder> if it contains an URL I would just use simple <a href=""> tags.
12:06:21 <NamelessCoder> if it is a link wizard then you do need this v:link.typolink but may consider plain <a href=""> combined with the URI version https://fluidtypo3.org/viewhelpers/vhs/master/Uri/TypolinkViewHelper.html and put your onclick stuff in the a-tag properties as normal
12:06:21 <Guest|65234> no it is coming form link wizard
12:06:59 <NamelessCoder> use the URI version of the ViewHelper as value of the "href" attribute of your <a> tag
12:10:50 <NamelessCoder> you should take a closer look at the fluid syntax documentation (or you will have a pretty hard time in the future after I give you the facit on this one)
12:12:03 <NamelessCoder> it'll be very hard to solve many use cases unless you know about such alternative versions of viewhelpers as well as how to use inline syntax
12:14:31 <justcasoer> NamelessCoder: can i ask you one more questen, when you are finished?
12:14:40 <Guest|65234> : Argument "parameter" was not registered.
12:17:52 <NamelessCoder> I wouldn't expect you to catch that one - but it would have been more likely if you were comfortable with the inline syntax instead of just copy/pasting ;)
12:18:13 <NamelessCoder> justcasoer don't ask to ask, just ask
12:26:02 <justcasoer> i dont really understand what you mean. i just updated from 6.1.x to 6.2.x . before the update everything worked
12:27:21 <NamelessCoder> justcasoer is the "Content type" set to "Fluidcontent" and do you see the field "Fluid content type" when editing the content and does the selector have any values?
12:29:53 <NamelessCoder> justcasoer you are looking for this field: http://i.imgur.com/ZEJNpAy.png
12:30:39 <Guest|65234> thank you, you made my day. and yes you are right i have to know more about the correct syntax. i am still in learning process.
12:30:45 <NamelessCoder> when "Type" (which is CType in database) is set to "fluidcontent_content" (the value behind the label "Fluid Content" in the left selector), then you should see the right selector listing all your templates
12:33:36 <NamelessCoder> justcasoer if the selector has no values then my comment from 18:25 applies - you probably have a parsing error in the template
12:33:47 <NamelessCoder> (which would cause it to be excluded from configuration)
12:34:15 <NamelessCoder> that, or you have additional migrations to perform after updating one or more extensions (vhs, flux) - see changelogs of each to know what to migrate
12:35:06 <justcasoer> i updated an activated everything like before. thank you for the hint. i will try to find the error tomorrow.