Tagged Questions
The row tag has no wiki summary.
63
votes
5answers
62k views
jQuery - count number of rows in a table
How do I count the number of tr elements within a table using jquery. Sorry, I sense this might be basic but i've been banging my head against it.
I know there is a similar thread, but I just want ...
11
votes
6answers
26k views
C# Iterate Over DataGridView & Change Row Color
I have a datagridview made up of multiple rows and columns.
I want to iterate through each row and check the contents of a specific column.
If that column contains the word "NO", I want to change the ...
8
votes
4answers
2k views
Select random row from an sqlite table
I have an sqlite table with the following schema:
CREATE TABLE foo (bar VARCHAR)
I'm using this table as storage for a list of strings.
How do I select a random row from this table?
7
votes
4answers
4k views
jquery tablesorter plugin - retain alternative row colors
i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table.
the issue is that the alternative row colors are all messed up ...
6
votes
2answers
245 views
php and mysql get data by year and date wise! table structure?
While making a sample details page, I just stuck upon a really confusing situation. What i actually want to do is like this:
+----------------------------------------------------+
+ Year | Month | ...
6
votes
5answers
2k views
WPF DataGrid RowHeader databinding
I have a DataGrid, bound to a DataTable. I want to display text in the RowHeader, to achieve something like this:
Col0 Col1 Col2 Col3
Table | 1 | 3 | 5 | ...
6
votes
3answers
10k views
android listview item height
Why when i use SimpleCursorAdapter for ListView i have items height in ListView like this -
(My code based on this)
But when using arrays Listview items have big height
(I learn listview based on ...
6
votes
2answers
870 views
UIPicker detect tap / touch on currently selected row
Okay guys, I have a UIPickerView and I want to do something when the user TAPS the currently selected row. I have it working right now where if they tap a row which is NOT selected, it rotates to the ...
6
votes
3answers
6k views
How to programmatically access Control in WPF Grid by row and column index?
Once Controls have been added to a WPF Grid, is there a way to programmatically access them by row and/or column index? Something along the lines of:
var myControl = (object)MyGrid.GetChild(int row, ...
5
votes
5answers
74 views
How to change rows to columns in ArrayList<Integer[]>
How to change rows to columns in ArrayList<Integer[]>? For instance:
ArrayList<Integer[]> arr = ArrayList<Integer[]>();
arr.add(new Integer[]{1,2,3});
arr.add(new Integer[]{4,5,6});
...
5
votes
2answers
62 views
Protect row from deletion in MySQL
I want to protect some rows from deleting and I prefer to do it using triggers rather than logic of my application. I am using MySQL database.
What I came up with is:
DELIMITER $$
DROP TRIGGER ...
5
votes
2answers
99 views
How do I sort jagged array by row in C#?
I have 2D jagged array. And I want to sort it by any rows.
I've searched and found code for sorting by columns
private static void Sort<T>(T[][] data, int col)
{
Comparer<T> ...
5
votes
2answers
187 views
Find highest value in row and echo number and column name
After too many hours I can't find the answer to this.
First my table
id | one | two | three | four | five | galname
-------------------------------------------------
1 | 2 | 5 | 23 | 4 ...
5
votes
3answers
177 views
how can i put different colors in ListView
i want to get the different colors in each row of the list view
but current only one color is shown
so how can i do this
ArrayAdapter<String> adapter=new ...
5
votes
1answer
200 views
Java table arraylist modification
I have currently a block in my brain and cannot find the solution. I am not a good Java developer and this is about my university coursework.
Basically its a task to manage properties, and I am ...
5
votes
4answers
2k views
Linethrough/strikethrough a whole html table row
After some research, I couldn't find an answer to this question. There was this but it didn't really answer my question. I would like to "strikethrough" a complete html table row in CSS, not just the ...
5
votes
2answers
2k views
WPF DataGrid cannot Add a row when datasource is empty
CanUserAddRows="True" only 'works' when there's already data in the ItemsSource of the DataGrid. If it just so happens that there are no rows in the original list of items, then the DataGrid doesn't ...
5
votes
4answers
17k views
C# Silverlight Datagrid - Row Color Change
Hey!
How do you change the color of the silverlight datagrid rows?!
I've tried this but it doesn't seem to work how I want it to...Random rows get colored incorrectly:
void ...
4
votes
1answer
55 views
SQL: Statement Triggers VS For Each Row
EDIT: I don't know what distro it is, it's in an exam paper.
I'm just not getting this, sadly. I'm quite happy with Row level triggers but could someone explain to me how the results would differ if ...
4
votes
4answers
54 views
How to calculate the Sum of numbers in rows in a space delimited file?
I have space delimited file which is like this:
probeset_id submitted_id chr snp_pos alleleA alleleB 562_201 562_202 562_203 562_204 562_205 562_206 562_207 562_208 562_209 562_210 562_211 562_212 ...
4
votes
2answers
105 views
How to align elements of Row[] to Bottom or Top in Mathematica?
When I write
Row[ {Framed@Column[{1,2}], Framed@"123"}, Alignment->Top]
or
Row[ {Framed@Column[{1,2}], Framed@"123"}, Alignment->{Left,Top}]
in either case, nothing happens. Default ...
4
votes
1answer
147 views
Remove rows in dataframe based on three columns
I have a dataframe like z:
z <- matrix(c(1,0,0,1,1,0,0,
1,0,0,0,1,0,0,
0,0,0,0,0,0,0,
0,0,1,0,0,0,0),
nrow=7,
dimnames=list(LETTERS[1:7],NULL))
[,1] [,2] [,3] ...
4
votes
3answers
101 views
Oracle random row from table
I found this solution for selecting a random row from a table in Oracle. Actually sorting rows in a random manner, but you can fetch only the first row for a random result.
SELECT *
FROM table
ORDER ...
4
votes
3answers
349 views
Where is setSelectedRow() for JTable?
Java Swing JTable has a getSelectedRow() method, but does not have a setSelectedRow() method.
I need to highlight/select a row in a JTable. How should I proceed?
4
votes
4answers
2k views
How to create a table WITHOUT alternating row colors when using Blueprint CSS framework?
The Blueprint CSS framework makes all table rows of alternating colors by default. How to disable this behaviour for one table?
I tried to use Chrome Developer Tools to see all the styles Chrome uses ...
4
votes
2answers
2k views
openxml - inserting a row, moving others
I am using openxml to create an excel report. The openxml operates on a template excel file using named ranges.
The client requires a totals row at the end of the list of rows. Sounds like a ...
4
votes
4answers
4k views
How to get row count for jqGrid?
I would like to know how to get row count for jqGrid. I'm using rowNum: -1 so it displays all the rows. I tried using
parseInt($("#grid").getGridParam("records"), 10)
But it always returns 0.
Thanks ...
4
votes
4answers
418 views
Python In-memory table
What is the right way to forming in-memory table in python with direct lookups for rows and columns.I thought of using dict of dicts this way,
class Table(dict):
def __getitem__(self, key):
...
4
votes
2answers
4k views
UITableViewCell Custom accessory - get the row of accessory
I have a pretty big issue. I am trying to create a favorite-button on every UITableViewCell in a UITableView. That works very good, and I currently have an action and selector performed when pressed.
...
4
votes
2answers
3k views
Why can't I fade out this table row in IE using jQuery?
I can't get the table row to fade out in IE. It works in Chrome, but not IE. It just becomes really 'light' and stays on the screen. I tried IE8 with and without compatibility mode.
<html>
...
4
votes
2answers
736 views
Table decoration in Qooxdoo
Is it possible to set the background color of one Row in a Table? I need to highlight a row when a condition applies. Something to the effect of < tr font="...">...< /tr> where I can specify the ...
4
votes
4answers
6k views
How to fix height of TR?
Is it possible to fix the height of a row (tr) on a table?
The problem appears when I shrink the window of the browser, some rows start playing arround, and I can not fix the height of the row.
I ...
4
votes
4answers
3k views
Removing a row from an Excel sheet with Apache POI HSSF
I'm using the Apache POi HSSF library to import info into my application. The problem is that the files have some extra/empty rows that need to be removed first before parsing.
There's not a ...
4
votes
3answers
12k views
css: fix row height
i'm having this markup:
<style>
table
{
border:1px solid black;
width:400px;
height:300px;
border-collapse:collapse;
}
table tbody
{
border:1px ...
4
votes
5answers
9k views
How to programically select top row of JQGrid?
How does one programically select the top row of a JQGrid. I want to have the top row already selected when it is opened on the page. My grid is sorted by a descriptive column so the first row's id ...
4
votes
4answers
21k views
Setting background color for datagrid row in Adobe Flex
I need to programmatically change the background color for a single row in a datagrid in Flex. I've scoured the Net and found reference to "dg.setPropertiesAt," which is not a supported method ...
4
votes
5answers
13k views
Copy data from one existing row to another existing row in SQL?
OK so I suck at SQL and I always have to ask for help, not sure what my disconnect is because I don't have any problem with programming C like languages, here is my challenge:
I have a table full of ...
4
votes
9answers
31k views
c# gridview row click
When I click on a row in my GridView, I want to go to a other page with the ID I get from the database.
In my RowCreated event I have the following line:
e.Row.Attributes.Add(
"onClick",
...
3
votes
5answers
69 views
SQL - Inserting a row and returning primary key
Good day,
I have a little witty problem. Say, I inserted a row with some data in a table where a primary key is present. How would one "SELECT" the primary key of the row one just inserted?
Thanks ...
3
votes
3answers
119 views
How to add new items to combobox which is bound to Entities?
Design class which is generated by C# :
//
// usepurposeComboBox
//
this.usepurposeComboBox.DataSource = this.usepurposeBindingSource;
this.usepurposeComboBox.DisplayMember = ...
3
votes
4answers
104 views
Make “Greedy” Table Cell?
I have a row in a table that has 3 cells in it with values A, B, and C and the table is the full width of the screen, which is more than enough room for all 3. Right now, when they display, all cells ...
3
votes
6answers
109 views
Use jQuery to find a <tr> that is after a row with specific atribute in it
I don't know if the Title of this post makes sense, but here's a sample of what I'm working with:
<tbody>
<tr class="classRow" bgcolor="#EFE5D3" style="font-weight: bold;">
...
3
votes
2answers
510 views
Adding row to end of table with ajax
I have a table with three columns [1]type, [2]name, & [3] delete. The table's id is "physicianTable".
This is the format of the table.
<table width="100%" border="0" cellspacing="0" ...
3
votes
2answers
217 views
WPF Grid: Is there an easy way to readjust the row items if I need to insert new rows?
It appears that grid row and column definitions are hard-coded like this:
Grid.Row="3" Grid.Column="1"
I am in the middle of development on a new WPF app and I am having to constantly add and ...
3
votes
6answers
51 views
how to set border properties for rows created by floating elements, using css?
I've a inside container div. Now this gallery div (of set width = 800px) houses lots of thumbnails of sizes 100x100. The thumbnails are taken out from a database, and the number of thumbnails can ...
3
votes
4answers
196 views
mysqli INSERT anomaly
I have the following table:
ID: bigint autoinc
NAME: varchar(255)
DESCRIPTION: text
ENTRYDATE: date
I am trying to insert a row into the table. It executes without error but nothing gets inserted ...
3
votes
4answers
7k views
Highlight ListView selected row
I have a list of albums (several hundred).
When I touch the selected album I want to offer the user a choice of playing the whole album, or moving to its track ListView. No problem.
However, after ...
3
votes
2answers
195 views
Find the most repeated row in a MATLAB matrix
I am looking for a function to find the most repeated (i.e. modal) rows of a matrix in MATLAB. Something like:
>> A = [0, 1; 2, 3; 0, 1; 3, 4]
A =
0 1
2 3
0 1
3 4
Then ...
3
votes
0answers
186 views
Problem with RowAnimation
Hey guys. i have a problem with animating deletes and inserts on a UITableView. The Fact ist, that i have different cellheights, some 44.0 some 135.0 now. i have uitableviewstylegrouped with different ...
3
votes
2answers
2k views
reading a csv file with repeated row names in R
I am trying to read a csv file with repeated row names but could not. The error message I am getting is Error in read.table(file = file, header = header, sep = sep, quote = quote, : duplicate ...