Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
3k views

Can we solve the table row background image problem, in chrome, in multi celled tables?

It is frequently asked – but I haven’t seen a good answer yet (and I looked). If you set a background image in CSS to a table row- the image will repeat itself in every cell. If you set the position: ...
7
votes
3answers
5k views

Android and displaying multi-lined text in a TextView in a TableRow

I'm displaying a TableLayout with rows as follows: <?xml version="1.0" encoding="utf-8"?> <TableRow xmlns:android="http://schemas.android.com/apk/res/android" ...
4
votes
2answers
183 views

Failing to extract html table rows

I try to extract all five rows listed in the table above. I'm using Ruby hpricot library to extract the table rows using xpath expression. In my example, the xpath expression I use is ...
3
votes
2answers
122 views

Dynamically added table rows not appearing

I have seen many posts regarding dynamically adding table rows, but I am not sure what I'm missing. When I execute the following, nothing is displayed (aside from application title bar). My Layout: ...
3
votes
1answer
1k views

TableRow span not working for dynamically added rows

I have the following problem spanning dynamically added rows to a TableLayout inside a scroll view. The rows follow this pattern: Row 1: Cell spanned over the whole table Row 2: Two cells Row 3: Cell ...
3
votes
1answer
2k views

Get all TableRow's in a TableLayout

I've been looking for hours on how to get all TableRow's in a TableLayout. I already know how to add and delete rows dynamically, but I need to loop over all the rows and selectively delete some of ...
3
votes
2answers
8k views

android: two issues using Tablerow+TextView in Tablelayout

I am using Tablerow+TextView to make a simple view for blog posts and their replies. In each TableRow I put a TextView in. Now I have two issues: The text which is longer than the screen won't ...
3
votes
3answers
4k views

Android TableRow RelativeLayout Issue

I have the following <TableRow xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/admin_row" android:layout_width="fill_parent" ...
2
votes
1answer
830 views

JavaFX 2: Get TableCell Row Index

I have a Table with checkboxes. I want to change the selection of the checkbox in the first column when I click on the checkbox in the third or fourth column. I want to be able to change the other ...
2
votes
2answers
272 views

Aligning TextViews in a TableRow

I am trying to align 3 text views in a tablerow like this: |------------------------------------------------| | {TextView1} {TextView2} {TextView3} | ...
2
votes
4answers
367 views

Dynamically change css class of a row in a table

I have a simple table: <table> <tr class="none"><td>value</td><td>value</td></tr></table> I then need to check all the values of the cells in every ...
2
votes
2answers
2k views

Problem with adding rows in TableLayout programmatically

I am trying to add rows in a TableLayout programmatically and I am following instructions given in following links: Dynamically Adding Rows to TableLayout and Creating Table Rows Inside A Table ...
2
votes
1answer
883 views

How do you add dynaically a view from xml file, I want to add TableRow in RelativeLayout

I am trying to add table row dynamically in my activity. The table row is in the relative layout. It looks fine but don't know where I am going wrong. Below is my code public void onCreate(Bundle ...
2
votes
1answer
2k views

How to set layout_span through code

Does anyone know how to set/change the android:layout_span="" of an EditText in Android at runtime. I already have the EditText defined in my XML file. <TableRow android:paddingTop="20dip" ...
2
votes
1answer
543 views

jQuery Looping Through TableRows/Table Cells Performance Question

I have a function that is called on document.ready that loops through a table with roughly 600 rows that was generated in classic ASP. In a "modern" browser (Chrome, Firefox, IE9 Beta) it runs in ...
2
votes
1answer
4k views

Android TableRow - How to add View dynamically to certain postion?

I'm constructing TableLayout dynamically. And I need TableRow has a gap in certain column position. For example, I need row has ImageView on 3 and 5 position, next row has ImageView on 1, 2, 4 ...
2
votes
3answers
393 views

DotNetNuke, Ajax and jQuery: Hiding a table row

I have written a DotNetNuke module for a customer that allows them to "delete" a coupon from a table. When they click the link, an Ajax POST is created, using jQuery, and upon success the row should ...
2
votes
2answers
2k views

How to automatically resize an EditText widget (with some attributes) in a TableLayout

I have a layout issue. What I do is this: create TableLayout in xml with zero children: <TableLayout android:id="@+id/t_layout_contents" android:layout_width="fill_parent" ...
1
vote
1answer
57 views

Android: Tablerow multiline textview clipping vertically

I am dynamically adding rows with two columns to a table. One of the columns holds text that will spread across multiple lines. I've added the weight on the layout parameters for the textview so it no ...
1
vote
1answer
47 views

How to count table cells in a row with JQuery?

I have an image gallery with say 39 number of images. Two buttons prev and next and in the middle a counter. Images are inside a table and 6 of images are shown. When the user presses next button 6 ...
1
vote
0answers
64 views

27 column table that you can scroll horizontally to view

I know this has been answered in bits and pieces around this site, all my google links to questions similar to this one are purple, i've no other choice but to ask it here. I want to make a table I ...
1
vote
1answer
63 views

Size of button in tablerow is not correct. (Android)

I'm writing an Android application. Here is it's XML layout : <ScrollView android:id="@+id/ScrollView01" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
1
vote
1answer
51 views

TextView inside a TableRow does not display text, properly, in Android

I'm writing a simple Android application that needs some text which should be written from right to left. So I used a TableRow as follows: <?xml version="1.0" encoding="utf-8"?> ...
1
vote
1answer
44 views

deleting dynamic table rows in android

in my app, i have created table rows dynamically in each table row, i provide an icon that will help the user help in deleting that specific row how can i achieve this? any suggestions please is ...
1
vote
3answers
55 views

Alternating Table Rows With Javascript issue

I have the following script working to add odd and even classes to alternating table rows which works fine. function alternate(){ if(document.getElementsByTagName){ var table = ...
1
vote
1answer
77 views

read data content in TableRow

I have a TableRow that is loaded dynamically. It contains multiple EditTexts and CheckBoxes. How do I get the user input from these EditTexts and CheckBoxes? This my Code public void ...
1
vote
2answers
142 views

set table row height

My lacking skills of CSS is giving me a headache. As presented in this picture below, captured from firebug: Using a GWT like framework called Vaadin I have given a Table component the class name ...
1
vote
2answers
197 views

Android - Multiple EditText in single TableRow

I have two EditText controls in one TableLayout>TableRow. I have another TableLayout>TableRow that has a single EditText control. When I hit "Enter" or "Next" from the first EditText field, the focus ...
1
vote
0answers
90 views

IE9/IE10 chrashes when hiding tablerow with different cell borders

I discovered a Bug in IE9 and IE10 platform preview. My code contains a simple table with a little style, cells in first column have different borders. If I hide the last row with simple javascript, ...
1
vote
1answer
242 views

Set a FILL_PARENT width to a TextView , wich is inside of a TableRow

I have a TextView inside of the TableRow. Is there any way to set a FILL_PARENT width to this TextView? Edited: Doesnt FILL when I have a backgroundImage to the TableRow <TableLayout ...
1
vote
2answers
789 views

Can't center TextView dynamically in TableRow

I have dynamically made a TableRow with an ImageButton and a TextView. I've set a gravity on my TableRow using TableRow.setGravity(Gravity.CENTER_VERTICAL); Then, on my TextView, I'm using this code ...
1
vote
2answers
495 views

Android: How to refresh a tablelayout after removing a row?

I have a tablelayout that retrieves data from a *.txt file. For every line of data in the txt file, there will be one row of data. Let's say I have two rows of data in the txt file right now, it ...
1
vote
2answers
577 views

OnClicklistener not working for runtime views

I am displaying a table in my application which is created at runtime. I want to make all of its rows clickable. Here i used the code. tableRow.addView(payeeNameText); ...
1
vote
2answers
2k views

how to give border for tablerow in tablelayout in android?

i need to show border around tablerow in tablelayout... How would i do that???
1
vote
2answers
2k views

Android dynamically give space between tablerows

I am implementing a table layout and adding table rows to it dynamically. I want give space between these rows. may I know how to do it. I am also adding a textView to the tableRow. I am declaring the ...
1
vote
1answer
483 views

android tablerow and columns in code

I'm trying to create a TableLayout with dynamically added rows and columns (from an array of obbjects). Since it's dynamic must I code(?) All the examples I can find is doing it using xml layouts. ...
1
vote
4answers
1k views

focusable row inside table android

i have in xml a ScrollView which includes one TableLayout. My question is if it's possible to have a focusable row every time i click on it. Here is my xml code: <ScrollView ...
1
vote
1answer
1k views

TableRow heights getting blown out

I have a TableLayout with 3 TableRows, each TableRow has 3 ImageViews. Each ImageView has fitCenter for Scale type, and a weight and width per this stackoverflow answer. Now all the images scale to ...
1
vote
1answer
476 views

How to dynamically add radiobuttons, texboxes, and buttons in a Table by code?

I am trying to dynamically create a table with radiobuttons, textboxes and buttons on each rows uniquely depending on the question to the left of the TableRow with two TableCells. So far, I was able ...
1
vote
3answers
607 views

3 by 3 grid with image button in each cell on Android

Hey, i want to have a grid with 3 columns and 3 rows and an image button in each cell (center of cell) i tried with gridview but i can't fix the number of rows i tried with a tablelayout and 3 ...
1
vote
5answers
431 views

jQuery Click Table Row Toggle Section

I have the following markup (which I have no control and must remain as is, however the JavaScript can be manipulated.) http://jsbin.com/uyifu3/edit What I'm trying to accomplish is that when the ...
1
vote
2answers
144 views

How to store additional values in an html table row and hide those values from display?

I would like to store some business flags (like: isFavorite, isOnLive etc.) per an html table row that won't be visible to user. In practice, I have a simple ADO.Net DataTable on my code-behind which ...
1
vote
1answer
466 views

Table Layout problem in Android?

i have using Table Layout. It has two columns. first column contains a text view another one is EditText. My Layout should be look like this. column1: columnvalue1 column2: columnvalue2 col3: ...
1
vote
1answer
1k views

android: tablerow mixed with columns and multiline text

I am trying to have a tablelayout contains several tablerows. One of the rows contains 4 buttons, while the second row contains a very long text. However, the width of the button stretches with the ...
1
vote
2answers
1k views

android - how do i add >1 views in one cell for tablerow?

as above, how do i put 2 views inside one cell in a tablerow? below is my code: TableLayout v = (TableLayout)inflater.inflate(R.layout.featureitem2, null); // v.setColumnStretchable(0, true); ...
1
vote
2answers
413 views

Cant seem to hide TableRow on AJAX postback

I wolud like to hide/unhide a TableRow through ASP.NET AJAX when a checkbox is clicked. I have this code for the checkbox: <asp:UpdatePanel ID="UpdatePanel2" runat="server"> ...
1
vote
5answers
960 views

JQuery: Given a Parent Element, Testing for Certain Child Elements

NOTE: QUESTION HAS BEEN EDITED FROM ORIGINAL FOR CLARITY Hi all, I have the following code: <table id="myTable"> <th>Date</th> <th>Action</th> </table> ...
1
vote
1answer
746 views

jQuery: going through all visible rows of a table

I need to write some code that would loop though all rows of a table, then check a hidden input in each row to see if it contains a certain value and if so, set some values and hide the row. It might ...
0
votes
1answer
33 views

Android programmatically adding RelativeLayout to to TableLayout

So, I decided to learn to write Android apps. I prefer learning by writing code so I setup my environment and dived in to Android! And hit my head :) I am trying to add import RelativeLayout as ...
0
votes
1answer
28 views

Android: Selector isn't working as expected in TableRow selection

I have a TAbleLayout in my XML with 1 row i.e. te headings row. Other all rows, I add dynamically. I want to make a row selected on clicking it & on touching it. I added clickListener to each row ...

1 2 3