active questions tagged layout - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T09:16:54Zhttp://stackoverflow.com/feeds/tag/layouthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1875837/nested-layout-for-nested-resources-in-rails0Nested Layout for Nested Resources in Railstmo2562009-12-09T18:28:17Z2009-12-09T23:09:51Z
<p>I'm currently working with a simple nested layout for a "parent" resource and the standard application layout (similar to the <a href="http://guides.rubyonrails.org/layouts%5Fand%5Frendering.html#using-nested-layouts" rel="nofollow">guides example</a>). It all works fine and dandy for this top resource (we'll call it "news" just to keep up with the example), but what I really want to do is to apply this same layout method to all the resources nested inside.</p>
<p>So, for example, if I had</p>
<pre><code>map.resources :news, :shallow => true do |n|
n.resources :articles do |a|
a.resources :comments
end
end
</code></pre>
<p>when I visit a url like <code>localhost/news/1/articles/new</code> I should see my <code>news.html.erb</code> layout in action. As of now, I don't.</p>
<p>I obviously don't want to recreate the same layout file for each controller, even if I would pull out the meat the layout and put it in a shared partial. I'm even less thrilled about specifying the layout template in the controllers themselves (this specific example is kind of a temporary thing, though I will have a 'real' use-case for this a bit further down the road).</p>
<p>Hoping there is a straight-forward answer to this, as I'm not feeling good about the clunkiness of this implemenation.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1829318/how-do-i-pass-a-variable-into-grails-template-from-a-layout-file0How do I pass a variable into grails template from a Layout file?Mikey Donuts2009-12-01T22:13:51Z2009-12-09T21:07:21Z
<p>So I have a navigation template (/common/_navigation.gsp) that is getting rendered in the Grails projects main Layout file (/layouts/main.gsp). How do I pass some kind of variable/parameter/arg from the individual view files to layout and eventually into the navigation template? I just want the right tab to be highlighted when I'm on a page.</p>
<p>(We've already tried using the Grails Navigation Plugin. Since we have different tabs that point to the same controllers (same view, different filter) it breaks down.)</p>
http://stackoverflow.com/questions/1871558/zend-layout-a-smart-layout-selector0Zend Layout - A "Smart" layout selectorRyan2009-12-09T04:23:16Z2009-12-09T18:12:46Z
<p>I currently have Zend setup to look for a layout script in each module's view/scripts/layout.phtml file (ie: /application/modules/moduleName/scripts/layout.phtml). This is by setting layout[] to nothing (blank) in the application.ini file (<code>resources.layout[] =</code> )</p>
<p>The issue is that many modules may share the same layout. I don't want to copy the same exact layout into each module that uses it. I know I can set everything to use one layout script by setting a specific path like <code>resources.layout.layoutpath = /layoutPath</code> and everything would use /layoutpath/layout.phtml, and I know I can set individual pages (or whole Controllers, in the init) by using <code>$this->_helper->layout->setLayout('foobaz');</code></p>
<p>The issue is that some modules will have different layouts, other than the 'standard' one, and I don't want to set it on a by Controller or by Action basis. I want to set it for the entire module, set in one place (or intuitively figured out by code/Zend automatically). Ideally, it would be setup how it is currently, but if a module doesn't have its own layout.phtml, it would use the default module's layout.</p>
<p>So... how do I do it?</p>
http://stackoverflow.com/questions/1871189/iphone-uiviewcontroller-goes-under-status-bar0iPhone UIViewController goes under status barMantas2009-12-09T02:04:21Z2009-12-09T17:55:52Z
<p>I have UIView and UIController view. My is standard 320x460 view. In applicationDidFinishLaunching I do</p>
<pre><code>[window addSubview:[controller view]];
</code></pre>
<p>What is weird, UIView goes under the status bar (like there's missing outlet). However, if I rotate iPhone to the side and then back, it shows up ok.</p>
<p>Is this an expected behavior (I bet I can ix it by setting offset) or am I doing smth wrong?</p>
http://stackoverflow.com/questions/1874426/hiding-qt-widget-and-keeping-widget-space1Hiding Qt widget and keeping widget spacehumberto2009-12-09T14:57:25Z2009-12-09T16:54:04Z
<p>In a simple form I made a few buttons and put a horizontal layout. When mouse leaves the area one of the buttons, the last one, should be hided. Using button->hide() it works, but all the buttons are rearranged by the layout manager. What I want is that all other buttons continue in their positions. I tried replacing the widget with a widget place holder and swapping the button and placeholder hide()/show(), calling placeholder->resize(button->size()), but the layout manager don't respect the resize and the placeholder is set with its minimum size. What is the best way to remove a widget and keeping its space?</p>
http://stackoverflow.com/questions/1870205/html-layout-title-and-button0HTML layout: Title and Button Carl Smotricz2009-12-08T22:09:31Z2009-12-08T23:46:17Z
<p>I'm to implement a fullscreen layout for a Web app according to custom specs. I've got most of it under control but there's one part I have some trouble with.</p>
<p>To economize on space in an otherwise already crowded GUI, a "Log out" button should go into the title row rather than elsewhere. The title row, of course, contains a title. The button should appear in its default dimensions for the given browser/opsys combination at the top right, with a little padding. The title should be centered in the remaining space in that row. Here's a picture:</p>
<pre><code>+====================+=======+
| ACME Widgets | [Btn] |
+====================+=======+
</code></pre>
<p>I don't know how wide the button will be, nor should I need to. The layout should scale smoothly on a range of devices and resolutions, from about 200 px width to 2000:</p>
<pre><code>+==================================================+=======+
| ACME Widgets | [Btn] |
+==================================================+=======+
</code></pre>
<p>...with the title continuing to be centered in its area, which again will always be (total available width - width required for the button). The page may end up being used in a JavaScript-less environment, so dynamic size calculation is not an option. Nor (before you ask) is talking the customer out of his design.</p>
<p>Can anyone please suggest HTML (and, if required, CSS) to achieve this layout?</p>
<p><strong>Update</strong> More constraints/explanation (sorry): This app could be viewed by people with poor vision, who like to use their zoom button (<kbd>Ctrl</kbd>-<kbd>+</kbd>) to blow up font sizes. Therefore, I'd like to go with as few assumptions about things like text sizes as possible. Obviously, on a tiny display with big zoom I would eventually not have enough space for the unpadded title and button; but until then I'd like to stay flexible.</p>
http://stackoverflow.com/questions/1869448/make-a-grid-stretch-to-the-width-height-of-an-accordionitem0Make a grid stretch to the width/height of an AccordionItemeskerber2009-12-08T20:00:18Z2009-12-08T22:33:46Z
<p>I have a couple of Accordions in a Silverlight App I'm writing (even an Accordion inside of an Accordion!) but the layout is driving me insane.</p>
<p>For example, suppose you have a 500x500 Accordion. If you have 3 AccordionItems, the "Content" area is whatever the height/width of the Accordion is, MINUS the width/height of each header times the number of items you have.</p>
<p>If I add or remove an item, I have to start over if I want to dock items to the right or left of each AccordionItem by manually setting a grid to the resulting size of each AccordionItems content.</p>
<p>Is there a way around this? </p>
http://stackoverflow.com/questions/1869034/removing-custom-widget-from-qvboxlayout0Removing custom widget from QVBoxLayoutgct2009-12-08T18:46:04Z2009-12-08T19:41:38Z
<p>I've got a QFrame with a QVBoxLayout and I'm adding my own custom widgets to the layout
to simulate a QListWidget but with more information/functionality in the items. I add the widget to the layout and keep a reference in a member variable (this is Python): </p>
<pre><code> self.sv_widgets[purchase.id] = widget
self.vl_seatView.addWidget(widget)
</code></pre>
<p>Then when I'm done with an item I want to remove it from the screen and clean up the reference:</p>
<pre><code>self.vl_seatView.removeWidget(self.sv_widgets[purchase.id])
del self.sv_widgets[purchase.id]
</code></pre>
<p>Unfortunately, the widget is still being displayed on the screen! I've checked and I'm only adding it to the layout once (and indeed only one copy is displayed), tried manually calling update() on the layout, but to no avail. What's the right way to do this?</p>
http://stackoverflow.com/questions/1844079/wpf-layout-geting-a-column-to-fill-available-space0WPF Layout - Geting a column to fill available spaceVaccano2009-12-04T00:27:12Z2009-12-08T19:03:19Z
<p>I have a list box that has a grid in it's template to allow 4 columns. One column is the actual text of the list box. I want that column to fill the available horizontal space. </p>
<p>The column definitions are:</p>
<pre><code><ControlTemplate TargetType="ListBoxItem">
<Grid ScrollViewer.CanContentScroll="True" Margin="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="20" />
<ColumnDefinition Width="50" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="30" />
</Grid.ColumnDefinitions>
<CheckBox VerticalAlignment="Center" Grid.Column="0" IsChecked="{Binding IsSelected,
RelativeSource={RelativeSource TemplatedParent},
Mode=TwoWay}" />
<TextBlock VerticalAlignment="Center" Grid.Column="1" Margin="5,0,5,0" Text="{Binding Id}" />
<TextBlock VerticalAlignment="Center" Grid.Column="2" Margin="5,0,5,0" Text="{Binding Title}" />
<Button HorizontalAlignment="Right" Grid.Column="3" Tag="{Binding Id}" Margin="5,0,5,0">-&gt;</Button>
</Grid>
</ControlTemplate>
</code></pre>
<p>I have tried several permutations of this and nothing will get it to fix in the window except for an explicit size setting. Then when I resize the window it does not resize with it.</p>
<p>The list box is wrapped in a scrollviewer to allow vertical scrolling (I am guessing that is what is messing me up.)</p>
<p>Any ideas on how to get the third column to fill just the available space and no more?</p>
http://stackoverflow.com/questions/1860688/flex4-have-any-idea-how-to-set-the-layout0[Flex4] have any idea how to set the layout?Tunied2009-12-07T15:26:44Z2009-12-08T14:15:56Z
<p>hi all:</p>
<p>i want use two button to control list turn left/right one element.</p>
<p>but i got some confuse about how to layout those component.</p>
<p>i use " <strong>requestedColumnCount="6"</strong> " to set the list width , so in the design model</p>
<p>i only know this list can display 6 element , but i don't know how width it will be.</p>
<p>so i use the "HGroup" to set the layout , the main code is like this way</p>
<pre><code><s:HGroup x="214"
y="216">
<s:Group>
<s:layout>
<s:VerticalLayout />
</s:layout>
<s:Button label="←"
click="button1_clickHandler(event)"/>
</s:Group>
<s:Group>
<component:SmoothScrollingList dataProvider="{myProvider}"
itemRenderer="myitemdrender.FriendPageItemRender"
id="friendPageList"
mouseDown="friendPageList_mouseDownHandler(event)">
<component:layout>
<s:HorizontalLayout requestedColumnCount="6"
useVirtualLayout="true"/>
</component:layout>
</component:SmoothScrollingList>
</s:Group>
<s:Group>
<s:Button label="→"
click="button2_clickHandler(event)"/>
</s:Group>
</s:HGroup>
</code></pre>
<p>you can see i use one HGroup and three group to determine where the component should be.</p>
<p>is almost finish , but i still got problem about how to set those two button at the</p>
<p>middle of the position?</p>
<p>i try to use </p>
<pre><code> <s:layout>
<s:VerticalLayout horizontalAlign="center"/>
</s:layout>
</code></pre>
<p>in the first group layout , but seem not working.</p>
<p>and my another question is :</p>
<p>is this a good way to use so many group and hgroup to determine the position ? is there</p>
<p>have any other good way to do it ?</p>
<p>thanks a lot.</p>
http://stackoverflow.com/questions/1852647/is-this-wpf-progressbar-odd-render-behaviour-a-bug0Is this WPF ProgressBar Odd render behaviour a Bug?Andrew Waters2009-12-05T16:31:47Z2009-12-07T22:01:40Z
<p>Hope someone can help.
I have a simple scenario where clicking checkboxes is driving a progress bar in <a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">WPF</a>. The checkboxes are contained in a UserControl and the Progress bar is in a simple WPF client window.
On the user control I am using two dependency properties:
1) the existing Tag property has the value I wish to bind to the progress bar value and
2) a DP called CbCount which represents the total number of checkboxes.</p>
<p><strong>The problem:</strong>
When the application runs the progress bar's progress shows as being 100% complete even though via Snoop I can see the value is in fact 0. Clicking on the checkboxes everything works fine as expected.</p>
<p>Code:
UserControl - within namespace ProgBarChkBxs:</p>
<pre><code>public partial class ucChkBoxes : UserControl
{
#region CbCount
public static readonly DependencyProperty CbCountProperty =
DependencyProperty.Register("CbCount", typeof(double), typeof(ucChkBoxes),
new FrameworkPropertyMetadata((double)0));
/// <summary>
/// Gets or sets the CbCount property. This dependency property
/// indicates the number of checkBoxes
/// </summary>
public double CbCount
{
get { return (double)GetValue(CbCountProperty); }
private set { SetValue(CbCountProperty, value); }
}
#endregion
double _totalCount = 0;
double _numberChecked = 0;
double DEFAULT = 0;
public ucChkBoxes()
{
InitializeComponent();
this.Tag = DEFAULT;
this.Loaded += new RoutedEventHandler(ucChkBoxes_Loaded);
}
void ucChkBoxes_Loaded(object sender, RoutedEventArgs e)
{
if (this.ourContainer.Children.Count != 0)
{
_totalCount = this.ourContainer.Children.Count;
}
this.CbCount = (double)_totalCount;
}
private void CheckBox_Checked(object sender, RoutedEventArgs e)
{
if (e.OriginalSource.GetType() == typeof(CheckBox))
{
CheckBox cb = (CheckBox)e.OriginalSource;
if (cb.IsChecked == true) { _numberChecked++; }
if (cb.IsChecked != true) { _numberChecked--; }
//simple POC progress metric
this.Tag = (double)(_numberChecked / _totalCount * _totalCount);
}
}
}
</code></pre>
<p>XAML:</p>
<pre><code><UserControl x:Class="ProgBarChkBxs.ucChkBoxes"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="Auto" Width="Auto">
<StackPanel>
<TextBlock Text="Please select options" ></TextBlock>
<StackPanel Name="ourContainer"
CheckBox.Checked="CheckBox_Checked"
CheckBox.Unchecked="CheckBox_Checked">
<CheckBox>Fruit Juice</CheckBox>
<CheckBox>Coffee</CheckBox>
<CheckBox>Toast</CheckBox>
<CheckBox>Cereal</CheckBox>
<CheckBox>Grapefruit</CheckBox>
</StackPanel>
</StackPanel>
</UserControl>
</code></pre>
<p>The Client which just has the databindings is a simple window - the local namespace below refers to the project namespace xmlns:local="clr-namespace:ProgBarChkBxs", the meat of the code is:</p>
<pre><code><StackPanel>
<local:ucChkBoxes x:Name="chkBoxes"/>
<ProgressBar Name="pb" Background="Azure" Minimum="0" Height="30"
Value="{Binding ElementName=chkBoxes,Path=Tag }"
Maximum="{Binding ElementName=chkBoxes,Path=CbCount }"
/>
</StackPanel>
</code></pre>
<p>The really weird thing is if within the DP definition of the CbCount if I change the FrameworkPropertyMetadata to a really small value to say (double)0.001 the problem goes away.</p>
<p>I am running this on XP.</p>
<p>All help gratefully received - thanks.</p>
<p><strong>Update:</strong>
I have been digging into this again as it gnaws at my sole (who said get a life!)</p>
<p>Things I did:</p>
<p>1) Adding a slider which also like progressBar inherits from RangeBase gives me the expected behaviour.</p>
<p>2) Spinning up reflector I can see the static ctor for ProgressBar sets the default value first to 100,
RangeBase.MaximumProperty.OverrideMetadata(typeof(ProgressBar), new FrameworkPropertyMetadata(100.0)); Should AffectMeasure?
whereas in the slider:
RangeBase.MaximumProperty.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(10.0, FrameworkPropertyMetadataOptions.AffectsMeasure));</p>
<p>3) So we need another layout pass after a I set the ProgressBar.Value
Going back to my simple POC application if within a the progressBar loaded handler in the client window I jig the layout on the first run through:</p>
<pre><code>this.Width += 1; //trigger another layout pass
</code></pre>
<p>Then, hey, presto it works.</p>
<p><strong>So is this a bug?</strong></p>
<p>I still do not fully understand though how the progressBar value which is calculated from Minimum and Maximum values is affected in this way and not the Slider - the default value of Maximum appears to be having an effect and it looks as if the ProgressBar default should affect the measure pass. (missing <code>FrameworkPropertyMetadataOptions.AffectsMeasure</code>.)</p>
<p><strong>Can anyone help, either confirm my thinking or explain what is really happening here?</strong></p>
http://stackoverflow.com/questions/1695849/android-layout-autocompletetextview-nullpointerexception-workaround0Android Layout AutoCompleteTextView NullPointerException WorkaroundJeremy Edwards2009-11-08T09:26:58Z2009-12-07T18:36:44Z
<p>I'm working in with the Android SDK 2.0 / Galileo / ADT 0.9.4 (latest to date).
Against Android 1.5 API layer.</p>
<p>If I go to the layout editor and add an AutoCompleteTextView the screen immediately gives me a NullPointerException.</p>
<p>Does anyone have a documented workaround for this problem?</p>
<p>I can't seem to find one.
This is obviously a bug in the Android SDK. (It's been filed anyway.)</p>
http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangle5What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T12:36:26Z2009-12-07T15:59:36Z
<h2>Algorithm</h2>
<p>Consider this layout:</p>
<pre>
+-------------+
| |
| |
| +--+ |
| |##| |
| |##| |
| +--+------+
| |######|
| |######|
+------+------+
</pre>
<p>The black part is the occupied space. Now I need an algorithm that returns the largest remaining rectangular spaces. (Ordered from top to bottom, left to right.)</p>
<p>Like this:</p>
<pre>
1 2 3 4
+-------------+ +---- -------+
|#############| |### ######|
|#############| |### ######|
| +--+ | |###+ +######|
|###| |######|
|###| |######|
|###+ +------| | +--+
|### |######|
|### |######|
+---- +------+
</pre>
<h2>Input</h2>
<p>The width and height of the enclosing container. (A page in my code.)</p>
<p>A list of already occupied rectangles. They can be in any form that you like. <em>E.g. (x,y,width,height) or (x1,y1,x2,y2)</em></p>
<p>I'm dealing with floats, therefore a mathematical solution would be preferred.</p>
http://stackoverflow.com/questions/1858564/only-jlabel-not-showing-up0only JLabel not showing up...steeldusk2009-12-07T08:13:26Z2009-12-07T15:18:06Z
<p>I am writting a simple application which has a button that opens a new window then display a simple GUI/Text to acccept inputs from a user. but for some reason, I can get JLabel to be displayed on the new window. The application has following structure:</p>
<p>+mainFrame - JFrame <br>
+newFrame - JFrame <br>
-+newPanel - JPanel <br>
----title - JLabel <br>
----submitButton -JButton<br>
...</p>
<p>Buttons and textfields all display fine, but Jlabels won't show up at all. I have tried using different layouts and all but I still can't get it shown. JLabels inside mainFrame tree, works fine.. so it seems like the problem is due to newFrame declaration or something, but then button should not be displayed either. Well, I am kindda lost and can someone suggest me what I should check?</p>
<p>Thanks : )</p>
http://stackoverflow.com/questions/1858848/flowing-box-layout-with-different-height1Flowing box layout with different heightJimmy Engtröm2009-12-07T09:32:09Z2009-12-07T10:46:57Z
<p>Hi<br>
I'm working on a site using MVC 1.0 (but will soon upgrade to 2.0).<br>
The site has a top header and a number of boxes (UL elements) containing information beneath.<br>
I would like to use the browsers whole width to take advantage of widescreen monitors so the number of boxes on each row shoulf depend on the width of the browser window.<br>
The problem is that the boxes don't have a fixed height, the height depends on the content in each box.<br>
The height of each row should be set by the largest box on that row.</p>
<p>What is the best way of doing this?<br>
I hope my question makes sence, it's a bit hard to explain =)</p>
<p>Cheers<br>
/Jimmy</p>
http://stackoverflow.com/questions/1854699/how-to-define-stroke-around-background-rectangle-of-textblock-in-wpf1How to define stroke around background rectangle of textblock in WPF?rem2009-12-06T07:59:02Z2009-12-06T08:13:57Z
<p>I would like to have some text to be inside a rectangle with stroke around this rectangle (just like property "Stroke" of the object "Rectangle" itself). But I didn't manage to find a property of the object "Textblock" wich defines such a stroke.</p>
http://stackoverflow.com/questions/1854028/bought-web-design-table-structure-or-css-layout3Bought web design - table structure or CSS layout?Kovu2009-12-06T00:26:04Z2009-12-06T05:41:31Z
<p>Hi guys,</p>
<p>I tried a new web designer for one of my projects. After many tries he build a really nice design for my webpage and sent me the files. Now I wondered a much, because he only slice it in Photoshop - 20 images (very very bad sliced, e.g. borders with content in one image) and all complete 1 table structure HTML file.</p>
<p>When I asked him to do it in CSS, he said he can't, he doesn't know how, he is only a designer. His argument was: In his 4,5 year experience nobody asked for a sliced design, all customers would only have the PSD file and slice and create the HTML on their own.
And - he added - table structures are completly normal in web design.</p>
<p>So, my question: Am I old or is he?</p>
<p>Until now, I have ever build a webpage with DIV and CSS, never used table until you really needed a table structured information to show. That's what I learn.</p>
<p>Please tell me your opinion and how to handle with the actual situation.</p>
http://stackoverflow.com/questions/1854358/how-to-group-widgets-in-my-qt-app0How to group Widgets in my Qt app?unknown (google)2009-12-06T04:27:20Z2009-12-06T05:13:49Z
<p>Easy question (I hope!). This is my first Qt app and I'm struggling with how to have groups of elements on my Gui.</p>
<p>I need about 8 standard QWidgets (labels, edits, buttons) for each File object, which can be added or removed dynamically.</p>
<p>So ultimately I need to put all the File objects inside a QVBoxLayout inside a QScrollArea.</p>
<p>But first I need to group them somehow. I realize I could draw them all on my main window with a lot of offsets, but it wouldn't be very elegant.</p>
<p>How can I make my File object extend <em>some sort of canvas</em> and each one maintains it's own set of widgets?</p>
<p>Thanks for any guidance.</p>
http://stackoverflow.com/questions/1853542/how-to-solve-this-layout-dilemma-header-content-and-footer-which-expands-their0How to solve this layout dilemma: Header, Content and Footer which expands their background color horizontaly (but at the same time have centered content)?janoChen2009-12-05T21:30:36Z2009-12-06T00:44:30Z
<p>I created a layout were eveything is centered (with the "margin="0 auto" technique). I also wanted the header and footer to be black and expand to both sides when the browser enlarge to the sides. If I center everything the black background will center too and it wont expand indefinably. The only solution I found was to apply the background style to the header and footer and using a class inside them (.container) to center the content (I think Stack Overflow uses this technique with the footer). It's nice but I would like to know if there's a better way rather than adding additional divs? </p>
<p>MY HTML:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>globo design</title>
<link href="styles/layout.css" rel="stylesheet" type="text/css" />
<link href="styles/slideshow.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="scripts/slideshow.js"></script>
</head>
<body id="home">
<!-- header -->
<div id="header">
<div class="container">
<h1><a href="http://widerdesign.co.nr/">wider design</a></h1>
<!-- navigation -->
<ul id="navigation">
<li class="home"><a href="index.php"><span>home</span></a></li>
<li class="portfolio"><a href="portfolio.php"><span>portfolio</span></a></li>
<li class="about"><a href="about.php"><span>about</span></a></li>
<li class="contact"><a href="contact.php"><span>contact</span></a></li>
</ul>
</div>
</div>
<!-- content -->
<div id="content">
<div id="top-column">
<p>We <strong>design and develop</strong> clean and effective webs in the <strong>top 3 languages</strong>
on the Internet. Internet is mean to reach the whole world.You are mean to reach the whole audience:</p>
</div>
<div id="middle-column">
<h2>Our Work</h2>
<!-- slideshow -->
<div id="slideshow">
<div id="slidesContainer">
<div class="slide">
Content for slide 1 goes here
</div>
<div class="slide">
Content for slide 2 goes here
</div>
<div class="slide">
Content for slide 3 goes here
</div>
<div class="slide">
Content for slide 4 goes here
</div>
</div>
</div>
</div>
<div id="left-column">
<h2>Web Design</h2>
<p>Create a web site easily with this online HTML generator. Follow the steps below to create web pages then click "view html page" to test it once it's completed. You can copy and paste generated code where you wish within the generated document(s). For example: You created an HTML table with 3 rows and 3 columns. You then added a link, which appears below the HTML table. If you want the link inside the HTML table, just cut and paste it inside the table in place of an "ADD TEXT" statement. Any where text,images,or links need to be, there will be a generated "ADD TEXT" statement in the HTML pages.</p>
</div>
<div id="right-column">
<h2>Web Translation</h2>
<p>Create a web site easily with this online HTML generator. Follow the steps below to create web pages then click "view html page" to test it once it's completed. You can copy and paste generated code where you wish within the generated document(s). For example: You created an HTML table with 3 rows and 3 columns. You then added a link, which appears below the HTML table. If you want the link inside the HTML table, just cut and paste it inside the table in place of an "ADD TEXT" statement. Any where text,images,or links need to be, there will be a generated "ADD TEXT" statement in the HTML pages.</p>
</div>
</div>
</div>
<!-- footer -->
<div id="footer">
<div class="container">
</div>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11932489-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>
</code></pre>
<p>MY CSS:</p>
<pre><code>/* reset */
* {
margin: 0;
padding: 0;
}
/* tags */
body {
background-color: #FFFFFF;
color: #5D5D5D;
font-family: Arial, "MS Trebuchet", sans-serif;
font-size: 75%;
}
h1 {
background: #2D2D2D url(../images/logo.png) no-repeat scroll 0 0;
margin-bottom: 20px;
text-indent: -9999px;
}
h2 {
color: #418EE4;
font-family: Arial;
font-size: 16px;
font-weight: normal;
margin-bottom: 10px;
}
a {
font-family: Arial, "MS Trebuchet", sans-serif;
}
/* classes */
.container {
margin: 0 auto;
width: 960px;
}
/* header */
#header {
background-color: #2D2D2D;
padding-top: 10px;
}
/* navigation */
ul#navigation {
height: 20px;
list-style: none;
margin: 0;
padding: 0;
}
ul#navigation li {
float: left;
}
ul#navigation li a {
background: url(../images/tab.png);
color: #C0C0C0;
display: block;
height: 20px;
outline: none;
padding-left: 10px;
text-decoration: none;
}
ul#navigation li a:hover {
color: #418EE4;
}
#home li.home a, #portfolio li.portfolio a, #about li.about a, #contact li.contact a {
background-position: 0 -32px;
color: #757575;
}
ul#navigation span {
background: url(../images/tab.png) 100% 0;
display: block;
line-height: 20px;
padding-right: 20px;
}
#home li.home span, #portfolio li.portfolio span, #about li.about span, #contact li.contact span {
background-position: 100% -32px;
}
/* content */
#content {
background-color: #FFFFFF;
padding: 20px;
overflow: hidden;
margin: 0 auto;
width: 960px;
}
#content h2 {
border-top: 2px dashed #F0F0F0;
border-bottom: 2px dashed #F0F0F0;
padding: 5px 0 5px 0;
margin: 15px 0 15px 0;
}
#top-column {
color: #818181;
font-size: 16px;
font-family: Arial, "MS Trebuchet", sans-serif;
margin: 10px 0 10px 0;
padding: 10px 0 20px 0;
}
#top-column strong {
font-weight: normal;
color: #3C3C3C;
}
#middle-column {
float: left;
}
#right-column {
float: left;
width: 420px;
}
#left-column {
float: right;
width: 500px;
}
/* footer */
#footer {
clear: both;
background-color: #2D2D2D;
height: 200px;
}
</code></pre>
http://stackoverflow.com/questions/1853285/where-should-be-put-xaml-for-layout-of-custom-control-in-wpf0Where should be put XAML for layout of custom control in WPF?rem2009-12-05T20:04:51Z2009-12-05T20:12:32Z
<p>After custom control is created there automatically appeared file for C# code - MyCustomControl.cs:</p>
<pre><code>public class MyCustomControl : ContentControl {
static MyCustomControl( ) {
...
DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl),
new FrameworkPropertyMetadata(typeof(MyCustomControl)));
}
...
}
</code></pre>
<p>and file for default stile - Themes\Generic.xaml:</p>
<pre><code> <!-- themes/generic.xaml -->
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CustomControlLib">
<Style TargetType="{x:Type local:MyCustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:MyCustomControl}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<ContentPresenter />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</code></pre>
<p>But where and how should I correctly place XAML code for layout and content of Custom Control itself?</p>
http://stackoverflow.com/questions/1848325/wpf-datagrid-footer-layout0wpf datagrid footer layoutBerryl2009-12-04T17:03:24Z2009-12-05T17:26:22Z
<p>Hello</p>
<p>My footer is currently composed of a label and an ItemsControl. It needs to be below 2 DataGrid controls that are similar in that they both contain a fixed width column for every day in the week and the end of it (which is what the ItemsControl in the footer has totals for). </p>
<p>I'm trying to solve the alignment, which seems easiest to just right align the day columns. I thought I could use a DockPanel as a container and Dock=Right on the ItemsControl like below, but everything is starting on the left after the label.</p>
<pre><code><DockPanel x:Name="columnTotals" DockPanel.Dock="Bottom" >
<Label ... DockPanel.Dock="Left" Width="Auto">Grand Totals</Label>
<ItemsControl DockPanel.Dock="Right"
ItemsSource="{Binding Path=TotalTimeViewModels, Mode=OneWay}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</DockPanel>
</code></pre>
<p>So my <strong><em>primary question</em></strong> in this post is: <b>why doesn't the ItemsControl actually dock to the right of it's parent container</b> (currently also a DockPanel)?</p>
<p>Cheers,<br>
Berryl</p>
<p>The secondary and more complicated question is how to make a footer line up with DataGrid columns. My main thought to date has been to use the fact that the last columns are always the same and their width is fixed.</p>
<p>I can make things line up with a StackPanel using FlowDirection=RightToLeft and 8 children labels (as opposed to one ItemsControl), but this has the disadvantages of making the XAML bloated and requires the text to be RightToLeft to reverse the container flow - it's messy and confusing to look at.</p>
<p>I guess the footer also could be another DataGrid, but the columns wouldn't be the same so I'd still have to solve the alignment by either working right to left as I'm doing now, or figure out what the starting point of the day columns is both initially and after a resize (I do not know how to do that).</p>
<p>Again, thanks for reading this and Cheers,<br>
Berryl</p>
http://stackoverflow.com/questions/1851929/zend-framework-layout0Zend Framework: Layoutwebo2009-12-05T11:19:50Z2009-12-05T17:00:21Z
<p>Hello, how could I add some variables to my layout.phtml?
I could add it in every Controller like here: <a href="http://stackoverflow.com/questions/1537700/sending-variables-to-the-layout-in-zend-framework">http://stackoverflow.com/questions/1537700/sending-variables-to-the-layout-in-zend-framework</a></p>
<p>But that's not really suggestive and in the Bootstrap I don't want to add it too.</p>
http://stackoverflow.com/questions/1852112/set-divs-height-to-occupy-the-contents-layout1Set div's height to occupy the contents layoutsamuel2009-12-05T12:43:47Z2009-12-05T15:33:29Z
<p>I want to achieve the following: </p>
<ol>
<li>"Main" div and sidebar "div" should have same height, with minimum height (maybe browser's screen height or 700px) maximum height is not limited - according to the contents.</li>
<li>The "content" div should wrap them(same height and width of both of them)</li>
</ol>
<p>Markup:</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="StyleSheet2.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrap">
<div id="content">
<div id="main">
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
<p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
</div>
<div id="sidebar"></div>
</div>
<div id="footer">
<p>Footer</p>
</div>
</div>
</body>
</html>
</code></pre>
<p>CSS:</p>
<pre><code>body, html
{
margin: 0;
padding: 5px;
color: #000;
background: #ace187;
height:100%;
}
#wrap
{
width: 752px;
height:100%;
margin: 0 auto;
}
#content
{
border: 1px solid #000000;
height: 100%;
background-color: #dbeef8;
}
#main
{
float: left;
width: 506px;
padding: 10px;
border: thin dashed green;
height: 100%;
}
#sidebar
{
border: thin dashed #FF0000;
float: right;
width: 200px;
padding: 10px;
height: 100%;
}
#footer
{
clear: both;
padding: 5px 10px;
background: #cc9;
}
</code></pre>
<p>note: there is a "wrap" div and it's also needed because it wraps a header that i omitted. </p>
http://stackoverflow.com/questions/1522051/silverlight-graphics-pixel-side-position1Silverlight graphics pixel side position?Tuukka2009-10-05T19:54:53Z2009-12-05T13:00:01Z
<p>I try to port simple game to silverlight (SameGame). The problem is that my old source code used pixel sizes to allight game marks to board. I draw simple grid using lines and game mark (using rectangle). How i can set rentacle position correctly?
Example 20 20 pixels to upper left corner).</p>
<pre><code> private void DrawGrid()
{
LayoutRoot.Children.Clear();
Rectangle r = new Rectangle();
r.Width = 20;
r.Height = 20;
r.Fill = new SolidColorBrush(Color.FromArgb(255, 0, 255, 0));
r.Stroke = new SolidColorBrush(Color.FromArgb(255, 0, 255, 0));
r.SetValue(Canvas.LeftProperty, (double)0);
r.SetValue(Canvas.TopProperty, (double)0);
LayoutRoot.Children.Add(r);
Color GridColor = Color.FromArgb(0xFF, 0x00, 0x00, 0x00);
for (int y = 0; y < 11; y++)
{
Line l = new Line();
l.X1 = 0;
l.Y1 = 30 * y - 1;
l.X2 = 20 * 30;
l.Y2 = 30 * y - 1;
l.Stroke = new SolidColorBrush(GridColor);
l.StrokeThickness = 1;
LayoutRoot.Children.Add(l);
}
for (int x = 0; x < 21; x++)
{
Line l = new Line();
l.X1 = 30 * x;
l.Y1 = 0;
l.X2 = 30 * x;
l.Y2 = 10 * 30;
l.Stroke = new SolidColorBrush(GridColor);
l.StrokeThickness = 1;
LayoutRoot.Children.Add(l);
}
}
</code></pre>
http://stackoverflow.com/questions/1851749/yield-in-view-for-multiple-blocks1Yield in view for multiple blocksSplash2009-12-05T09:58:01Z2009-12-05T10:22:25Z
<p>I am writing a small Sinatra-based app and would like each view to be able to insert various items into the layout, for example the page <code>title</code> or extra CSS/javascript references in the <code>head</code>.</p>
<p>Currently my layout (erb) looks like this (simplified):</p>
<pre><code><html>
<head>
<title>Hard Coded Title Here</title>
<link rel="stylesheet" ... />
</head>
<body>
<h1>Hard Coded Title Here</h1>
<div id="content">
<%= yield %>
</div>
</body>
</html>
</code></pre>
<p>Rather than having the title and CSS/JS references hard coded, I'd like to achieve something along these lines:</p>
<pre><code><html>
<head>
<title><%= yield :title %></title>
<link rel="stylesheet" ... />
<%= yield :more_head_refs %>
</head>
<body>
<h1><%= yield :title %></h1>
<div id="content">
<%= yield %>
</div>
</body>
</html>
</code></pre>
<p>And be able to define the content for those blocks from within each view.</p>
<p>Is this possible, and if so how would I go about doing it?</p>
http://stackoverflow.com/questions/1851128/blackberry-resize-the-width-of-horizontal-manager0BlackBerry - Resize the width of horizontal managerunknown (yahoo)2009-12-05T04:17:52Z2009-12-05T09:40:13Z
<p>Hello All,</p>
<p>Is it possible to resize the width of horizontal manager. I want to create two buttons in horizontal manag, set the background border. I am using the following code for that. It is working fine. But as there are only two buttons and doesn't occupy the entire screen of 320 width, setting border is happening only for those two buttons background. So i could see the white space apart from the horizontal width in forward and backward spaces. So i want to create a Horizontal manager itself with 320 width, so that setting border color will show for the entire width. Is it possible to resize the width of horizontal manager?</p>
<p>XYEdges borderColor = new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK, Color.BLACK);
XYEdges noPadding = new XYEdges(2, 2, 2, 2);</p>
<p>HorizontalFieldManager hzBtnFldManager = new HorizontalFieldManager(HorizontalFieldManager.FIELD_HCENTER);</p>
<p>createButton = new CustomControl("Create", ButtonField.FOCUSABLE | ButtonField.CONSUME_CLICK | ButtonField.FIELD_HCENTER, 83, 15);
cancelButton = new CustomControl("Cancel", ButtonField.FOCUSABLE | ButtonField.CONSUME_CLICK | ButtonField.FIELD_HCENTER, 83, 15);</p>
<p>hzBtnFldManager.add(createButton);
hzBtnFldManager.add(cancelButton);</p>
<p>Border btnBarPaddingBorder = BorderFactory.createSimpleBorder(noPadding, borderColor, Border.STYLE_SOLID);<br>
hzBtnFldManager.setBorder(btnBarPaddingBorder);
hzBtnFldManager.setBackground(BackgroundFactory.createSolidBackground(Color.GRAY));</p>
<p>this.setStatus(hzBtnFldManager); </p>
http://stackoverflow.com/questions/1850504/how-could-i-modify-this-template-to-add-butons-that-would-scroll-to-the-next-sect0How could I modify this template to add butons that would scroll to the next section?Jessica2009-12-05T00:13:53Z2009-12-05T00:31:26Z
<p>I am trying to make a horizontally scrolling Web Page. This template uses J Query and CSS to control width, but the User still has to drag the scroll bar across the bottom - how would I add arrows or something that the User could just click on and it would go over to the next section? Thanks in advance for your help!</p>
<p><a href="http://css-tricks.com/how-to-create-a-horizontally-scrolling-site/" rel="nofollow">http://css-tricks.com/how-to-create-a-horizontally-scrolling-site/</a></p>
http://stackoverflow.com/questions/1784841/css-two-colums-fixed-fluid-same-height0CSS: two colums (fixed/fluid) - same heightkemp2009-11-23T17:53:17Z2009-12-04T11:48:36Z
<p>What's the best way to do this simple thing?</p>
<ul>
<li>left column, fixed width, background say yellow</li>
<li>main column, rest of the screen</li>
</ul>
<p>main column will contain text of indefinite length, and I want the left column to be as high as the main no matter what the contents are. No header, no footer, just the screen split in two but the left <strong>must</strong> fill up all the space the main takes. No javascript.</p>
<p>Thanks.</p>
<p>EDIT: can this (very basic layout) be done <strong>without</strong> tricks like background images or absurd margin values? I'm trying to move on from the despised table approach, but so far I'm seeing that CSS only layouts always require some trickery even to do the easiest things.</p>
http://stackoverflow.com/questions/1844207/how-to-make-a-div-to-wrap-two-float-divs-inside3how to make a div to wrap two float divs inside?unknown (google)2009-12-04T01:02:21Z2009-12-04T03:13:48Z
<p>I don't know if it's a common problem, but I can't find the solution in web so far.
I would like to have two divs wrapped inside another div, however these two divs inside have to be align the same level (for example: left one takes 20%width of the wrappedDiv, right one take another 80%). To achieve this purpose, I used the following example CSS. However, now the wrap DIV didn't wrap those divs all. The wrap Div has a small height than those two divs contained inside. How could I make sure that the wrap Div has the largest height as the contained divs? Thanks!!!</p>
<p>
liquid test
body
{
margin: 0;
padding: 0;
height:100%;
}
#nav
{
float: left;
width: 25%;
height: 150px;
background-color: #999;
margin-bottom: 10px;
}</p>
<pre><code> #content
{
float: left;
margin-left: 1%;
width: 65%;
height: 150px;
background-color: #999;
margin-bottom: 10px;
}
#wrap
{
background-color:#DDD;
height:100%;
}
</code></pre>
<p>
</p>
<h1>wrap1 </h1>
< Back to article
<p>
</p>
<p><code>$</code></p>
http://stackoverflow.com/questions/1496852/page-margins-change-in-pdflatex2Page margins change in pdflatexMert Nuhoglu2009-09-30T08:49:05Z2009-12-03T23:50:15Z
<p>I use a style file that specifies page margins. I cannot understand the style file, but I guess it specifies bottom margins by using commands such as \vspace, \vskip, \vfil.</p>
<p>When I compile the tex document with pdflatex the margins, especially the bottom ones, change. When I compile the document first to ps then to pdf, the margins are good.</p>
<p>Do you have any idea, what the reason might be?</p>
<p>The contents of the style file can be accessed from <a href="http://tinypaste.com/c53d1" rel="nofollow">http://tinypaste.com/c53d1</a></p>