Questions tagged [columnspan]

30 questions
1
vote
1 answer

Odd behaviour of ColumnSpan in Xamarin Forms

I have a content view with a grid defined inside. The grid has three rows and two columns. I have an image that should cover the both the columns in the first row , ie column span =2 but setting the column span as 2 doesn't cover the whole area and…
Midhun Kumar
  • 549
  • 5
  • 23
1
vote
1 answer

Table column spacing take up last space without using colspan

I have a table with four rows. Inside of row 1 there is 1 column. Inside of row 2 there is 3 columns. Inside of row 3 there is 2 columns. Inside row 4 there is 2 columns. The column of row 1 has a colspan of 3 so that the column spans the whole…
mr developer
  • 43
  • 2
  • 4
1
vote
1 answer

Column-Span in ASP.NET MVC View

@foreach (var item in Model) { @if(ViewData["dropDown_"+item.Code] != null){ if (item.Code == "1" || item.Code == "4") { @Html.DropDownList("dropDown_"+item.Code+"_ListName",…
SuicideSheep
  • 5,260
  • 19
  • 64
  • 117
0
votes
1 answer

Tkinter - Columnspan does not bring desired result: How to get widgets to their desired place?

I am buildung a GUI for a file oranizer program. The program itself works, but I am having issues with getting my widgets into the right spot. The problem: I have too much space between my scrollbars and my textboxes, as you can see in the…
fbn001
  • 31
  • 7
0
votes
0 answers

How can I get the columns in tkinter to set their size based on the smallest widget in the column and not the widget spanning both columns?

I'm working with tkinter in Python and using grid, and when I put two widgets in different columns in one row and a widget spanning both columns in another row, then the columns' widths are both set to half the width of the widget spanning both…
davidhsonic
  • 11
  • 1
  • 3
0
votes
2 answers

OnIdiom for Grid columnspan

I need to use OnIdiom for grid column definition, but it isn't working. See my code below. Can anyone tell me what I am doing wrong and suggest a solution?
Riyas
  • 475
  • 1
  • 8
  • 27
0
votes
1 answer

Colspan in WPF DataGrid

I have a datagrid in one of my WPF application where I am showing some data from an XML file. Now there are rows which are kind of a headers. I want to show those rows with colspan, so that it occupies the whole row. I have tried the below code but…
Joy
  • 1,609
  • 3
  • 16
  • 28
0
votes
1 answer

Layout Span - table layout android

I'm using tableLayout (android) to create tables with 5 columns I need to span column inside table , but can't using layout-span correctly to become table like this : |column 1 | column 2 | column 3 | column 4 | column 5 | |column 11 | …
Kholoud
  • 15
  • 1
  • 4
0
votes
1 answer

Column span in nebula XViewer

I am using using nebula XViewer to display a data in grid format. I have an issue when i am trying to perform column span. Can any one help me to sort out this issue. Thanks
user3844950
  • 71
  • 1
  • 11
0
votes
1 answer

How to set where extra padding goes in tkinter

I have some Python tkinter code with a label that changes length and spans various columns. As it changes length, the extra padding seems to be shared among the columns it spans, whereas I want it to be added to just one column. As an example in the…
Jake Levi
  • 399
  • 2
  • 4
  • 12
0
votes
1 answer

How to implement a column headers spanning feature of TreeTableView control?

In the picture below (source) Balance column span Income and Spending columns. I can't found any information of how to achieve this... Any help appreciated
Andrey Morozov
  • 7,839
  • 5
  • 53
  • 75
0
votes
0 answers

CSS3 Column-span Spacing Issue

I'm trying to set up a simple two column layout using CSS3's columns but when I try and span an image across both columns, I'm getting some weird spacing issues. If you look at this stupidly specific jsFiddle, you'll see that each time I have one…
Ryan
  • 656
  • 6
  • 9
0
votes
2 answers

Difficulties to use columnspan

I have grid with four texboxs like these : And I would to get this: I have tried to play with column span but with no success :(
Walter Fabio Simoni
  • 5,671
  • 15
  • 55
  • 80
-2
votes
1 answer

I am facing a Tkinter problem with grid management; the columnspan is not working as I expect

I am writing a simple playlist downloader (with pytube) and i want to improve myself on Tkinter so i decided to use it to build an interface. However i have some issues with grid management and how to deal with different size on the same column but…
-2
votes
1 answer

Xaml design, basic issues on resize

I'm new to xaml design, last time I designed an user control I used Windows Forms :-( I was used to anchor controls and stop, when I resized the form the controls resize accordingly. What I was trying to create is something like this Where Column…
1
2