Questions tagged [fluid]

Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.

Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.

The standalone version can be used out of the box and there are integrations for TYPO3 and Neos

It looks like this

// this
<f:count>{myArray}</f:count>

// or  
{myArray -> f:count()}

Official documentation: https://github.com/TYPO3Fluid/Fluid

Since 2017-06 there is also Fluid for whose syntax is not related to php-fluid but which aims to be close to .

1458 questions
0
votes
2 answers

Twitter bootstrap divide row-fluid by available space

I have the following usecase. I need to draw 6 blocks of html divs and break it down to by the available space. The image bellow will demonstrate how is it suppose to be. Can you please have a look at this code and tell me what is the problems with…
yos mishan
  • 193
  • 2
  • 13
0
votes
1 answer

Typoscript object variables and accessing in Fluid templates

I have a project which has it's all templates, css, layouts and images in the folder fileadmin/templates . In my layouts I have multiple links to the images present in the fileadmin/images folder and it looks kinda complex to have all the links to…
dora
  • 1,314
  • 2
  • 22
  • 38
0
votes
1 answer

jquery tabs css fluid layout

quick question. I have a tabbed interface for my site but I have all the parts of the site crashing into each other. How do I achieve a fluid layout where it simply resizes when the display is smaller. I read a few articles @ alistapart and made my…
Joseph Izang
  • 766
  • 1
  • 13
  • 43
0
votes
1 answer

Fluid sliding panel : make it work on load and after resize with computed values?

I'm trying to put together a fluid sliding panel which should take into account the inner width of the window on load, as well as on resizes : depending on the actual window size, the panel should be moved left / right a fourth of the window width.…
0
votes
1 answer

f:form.select does not show me the data

I have an object adherent that contains an object grade(Class: Grade, membres: $uid,$abelGrade). I want to display all grades in database table 'grade'. so I assign a grades (an array of grades) to my view and i write this code :
NMNM
  • 293
  • 1
  • 2
  • 11
0
votes
1 answer

Textfield only with numbers

I have a Fluid Problem. This code: I want to fill just numbers in this input textfield. I tried to change…
zoom23
  • 694
  • 2
  • 10
  • 23
0
votes
3 answers

Resize img to window size keeping aspect ratio / no overflow on height or width

I realise this question has been asked multiple times in differently worded titles and options, but i have yet to find something that works for me. Im trying to have an img fill most of the screen (keeping its aspect ratio) without overflowing the…
Aquious
  • 64
  • 2
  • 14
0
votes
3 answers

Fluid Width Slider

I am making a website here: argit.bounde.co.uk I have followed a tutorial on making a slider and it works on the principle of having a ul of a big width and then the li's floated. This is then all concealed by a div which has overflow: hidden. Then…
rbyrne
  • 193
  • 1
  • 1
  • 12
0
votes
1 answer

Creating ViewHelpers inside Typo3 fluid template

I want to build a Typo3 template from scratch using Fluid. I'm new to this CMS, but have knowledge in Zend Framework which uses a similar MVC approach. What I don't know is where to put the ViewHelpers inside my template. I have the following…
Roman
  • 139
  • 12
0
votes
1 answer

Scala fluid syntax with Casbah toolkit for MongoDB

I am new to Scala and trying to use Casbah toolkit for MongoDb. Casbah tutorial says: "...This should allow a more fluid Syntax to working with Mongo. The DB object also provides an apply() for getting Collections so you can freely chain…
Anton Ashanin
  • 1,817
  • 5
  • 30
  • 43
0
votes
1 answer

Referential Integrity in List View

I have made an extension in TYPO3 v4.5 with the Extension Builder. Now I have some Tables, that don't have a create/update function, because they don't change very often (only once in some month). To change them, i want to use the list view in…
Agash Thamo.
  • 748
  • 6
  • 18
0
votes
1 answer

adding gutter to bootstrap with just CSS

I need to do a 3-column layout that matches the original design (in InDesign/Photoshop) as much as possible, and the requirements are using the responsive/fluid version of Bootstrap. I either can't get them aligned center (example 1--the closest to…
0
votes
1 answer

TYPO3 4.5 extbase test backend module

I search for a way to test my extbase-extension. I work with two different templatepaths for front- and backend. module.myext{ view { templateRootPath = myext/Resources/Private/Backend/Templates/ partialRootPath =…
freshp
  • 525
  • 5
  • 20
0
votes
2 answers

Images in Extbase - Fluid

I have an standard image upload in TYPO3 Backend, that allows more than 1 image upload. So I have an image database field with data like that: "image1.jpg,image2.jpg". In Frontend, I can explode the field, send the array to fluid, and output it in…
0
votes
1 answer

Using nested columns in Semantic.gs with a FIXED layout

I have implemented a fluid layout with Semantic.gs and some nested columns with LESS. But now our client decided they want the layout to be fixed. I thought I could simply comment out the line @total-width:100% in grid.less, however now the other…