How to create a custom position grid in yootheme warp framework - grid

Hi friends i want to create a grid look like this picture
http://upload7.ir/imgs/2014-11/40360516901990108279.png
this is the file of a grid named doubled
http://uplod.ir/tymq019i8bnx/doubled.zip.htm
tnx for your helps

Related

Grid or Table using Angular 6

I'm tasked to create a table that will display data from an endpoint. The table must be very responsive in that a user can "click" to remove rows or columns from the view (collapsable) and re-add them if they choose. Would you use a Table or a Grid to accomplish this task? Or maybe something entirely different? I'm using Angular 6. Thanks!
For table or grid you can either use angular material (table) https://material.angular.io/components/table/examples
Or something like bootstrap4 https://getbootstrap.com/docs/4.0/content/tables/
Both work great with angular.
for the table creation and to maintain the table you can use the AG-Grid (https://ag-grid.com) this will help you to create the table with your own customized table. Or if it's only for a table creation you can use the bootstrap tables and angular material table among that I will suggest you angular material it's more easy and simple to implement.

How can i add multiple elements on a single wordpress page

I want to use wordpress as a cms. Is it possible to define standard layout elements which can be combined to edit the layout of a page similar like other cms like "drupal" for example. Ie you could design a row with a picture on the left, one with a picture on the right and one without a picture. Than I combine these templates in any order to built the layout of the pages main content.
Is this possible, maybe with plugins?
Yes of course! You just need to Edit the already made template your way or you can Create your own Wordpress Template. But for that you should be confident with your HTML & CSS skills!
Here are some resources you may refer :
http://blog.spoongraphics.co.uk/tutorials/how-to-build-a-custom-wordpress-theme-from-scratch
http://themeshaper.com/modify-wordpress-themes/
Hope this helps!

Layout manager in Qt

The following quote is from this link: http://doc.qt.io/qt-5/qwidget.html#setLayout
If there already is a layout manager
installed on this widget, QWidget
won't let you install another. You
must first delete the existing layout
manager (returned by layout()) before
you can call setLayout() with the new
layout.
Question 1: What does it mean when you say is "layout manager is installed on this widget"?
Question 2: This link: http://doc.qt.io/qt-5/layout.html shows that there are various forms of layouts like: Horizontal, Vertical, Form Layouts. Grid layout can alone be used to arrange the widgets in the forms supported by other three layouts. Is there any special use of the other three layouts?
A layout is "installed" in a widget when you set it as the widget's layout with setLayout. That's all it means.
As for what layouts to use: use the simplest layout that does the job you want. Use nesting (you can add a layout to another layout) to make more complex designs. A grid is not necessarily the easiest to use - you'll soon find yourself with headaches about widgets needing to span multiple rows/columns, spacing difficulties etc... if use a single grid as your layout.

How do I put content from a specific node next to a grid view?

I want to place a body of text alongside a dynamically generated grid of product images.
I can easily create the grid using the Views module - but how do I split a page to display a specify page node alongside the grid?
There are lots of ways you might do it. The best way may depend on the particulars of your layout.
One solution would be to use the Panels module.
Or you could override the default page.tpl.php with something like page-node-1.tpl.php and insert the view using views_embed_view.
Yet another method would be to output the view as a block display and add it to a block region on the node page.
Views Attach module may also help.

Create drag-able panels in Flex like its in netvibes.com

I want to create a news application for my website.
My question is how should i create drag-able panels/canvas inside another panel/canvas.
What i exactly intend to do can be seen on netvibes.com . The website has different panels of every news group, and this panel could be moved from one place to other, but in a well defined manner. And the other panel take over the place of dragged panel.
Is there any component in flex, which can help me make something like that.
If i was unable to make my question clear, plz let me know, i will try to make it more clear.
Regards
Zeeshan
A TileList with drag and drop enabled should be able to accomplish something like that. Or, use a Spark List with a custom layout that you create.
It might be a bit tricky getting the list elements to drag and drop based on clicking the title, but it should be doable.
I think you should consider a more advanced solution with drap-n-drop with a custom panel based component. The places the panels can move can be implemented with a different custom canvas based component. The advantage would be to move the components into different custom positions and panels can be resized independent of each other.
Adobe has some good tutorials for drag-drop operations.

Resources