a horizontal line of cells in a spreadsheet, sql table, html table or similar structure.
0
votes
1answer
31 views
how to find a row in R?
I have a dataframe of 1000s of row and columns..
I need to find a particular row, by means of its rowname (so I know the rowname, but do not know which position it is in).. so for example
...
0
votes
1answer
31 views
can only get one value for $row['id']
I'm trying to get all the records in my database and it was successful, however I can only get 1 id value. I need to get all the id in my database and call a javascript function. In my code I can only ...
0
votes
0answers
19 views
primeface get all row value of datatable
I am new for prime face. I had a checkbox and textbox value on dataTable.And dataTable will load data from database. Please see my code below
text.xhtml
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
10 views
Multi Row Picker View
I cannot find or come up with any code that would allow for a 2 row picker view. I would then need to use items that were selected in the picker views and take those items that were selected and then ...
0
votes
1answer
26 views
Deleting row in R based on meeting conditions
I am reading in a very large dataset using read.table. Once I've read the data in, I want to keep only those records that fall in a certain lat/lon region. So basically I want to define upper and ...
0
votes
0answers
17 views
How to use a hidden Row in Reporting Services
Hello I have this problem:
I can't use a row if this is hidden in a table on Reporting services, for this use an expresion for validate an a period of time for show or not show this rows but I have 1 ...
0
votes
0answers
13 views
Touch and swipe for overlapping views
I'm trying to reproduce Gmail's behavior in e-mails main list, the user can:
click on a listview's row to display the e-mail
swipe a listview's row to perform some action on this e-mail.
For that, ...
0
votes
0answers
13 views
Databound Datagridview Add rows to the top of the grid after grid sorting
I have a datagridview which is binded to xml dataset at the start.
After that, I will continue to receive new data to add to the datagridview using the following.
System.Data.DataSet ds = ...
0
votes
2answers
37 views
Adding Row To a Table ASP.NET C# Microsoft Visual Studio
I created a Table with these headers. Now How do I use a WHILE LOOP and add empty rows dynamically on the page load. Like if I want 40 empty row with 3 cells each, How do I use a while loop and add ...
0
votes
1answer
24 views
Zend php can not use rowCount for affected row [duplicate]
I update row in DB and check for affected row but its not working with rowCount() and also mysql_affected_rows.
This is my code
$result = $this->_db_table->update(array('password' => ...
0
votes
2answers
29 views
Datatable Row Selection Primefaces
I am trying to implement row selection for a datatable with primefaces, but when I click on a row, nothing displays. I've narrowed it down to the setter for the selected car is not getting called, but ...
0
votes
0answers
12 views
Android- Set width to View in tablelayout
I want to set width and height to rows in xml.
This is my code:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
0
votes
1answer
18 views
add rows to jTable
I'm doing an exercice about java swing, now it's time to add rows from a database to the jTable, I know that the method to do this is "addRow()" but netBeans doesn't suggest it to my and underline the ...
0
votes
2answers
33 views
Mapping pixels of two matrices
Say that I have two matrices of the following sizes:
matrix_1 = 30090x2
matrix_2 = 170x177
Assume here that the number of rows n matrix_1 represents the number of pixels. You can see that the size ...
1
vote
2answers
29 views
Assiging the maximum value of a column to the row
Say we have the following matrix
1 3 6
5 4 7
5 3 9
What I'm trying to do is for each row, I assign it the maximum value of the column. So, for instance, I'm expecting the following output:
x(1) = ...
0
votes
2answers
51 views
Write first row from .txt-file as a column in new .txt-file
I am trying to get the first row of a file.txt (tab separated strings) and create a new file with one column which is made of the elements of the row I want to extract. I managed to get the first row ...
0
votes
2answers
62 views
How to construct a SQL query to fetch different rows from same table in different columns?
Lets say I have a table in ORACLE database like:
ACC_ID | ACC_AMT
111 | 10000
111 | 12000
111 | 14000
222 | 25000
222 | 30000
333 | 18000
333 | 27000
333 | 13000
333 | ...
0
votes
2answers
34 views
PDO will only return first row of data set
This code displays the first row perfectly but no more.
I have tried fetchAll() , and can get the correct number of rows to display, but only one column is populated per row, and the data values are ...
0
votes
1answer
26 views
PHP- select specific row from MySQL database
I Need to select a specific row from a MySQLi database based off of a value in it.
For example I have a Table with a column named "house", and under that column there are maybe 5 rows with the title ...
1
vote
3answers
22 views
Mysql Error Output: Column count doesn't match value count at row 1
SQL Query:
INSERT INTO probid_users
(username, password, email, reg_date, payment_mode, balance, max_credit, salt, tax_account_type, tax_company_name, tax_reg_number, tax_apply_exempt, name, ...
0
votes
3answers
30 views
How can I do this sort of table in HTML?
__________________________________________
|________________________________________| << cell uses 100% of the row space
|____________________|___________________| << each cell there use ...
0
votes
1answer
19 views
Plotting rows corresponding to a given y-value separately
Suppose I have a table of data-
No. 200 400 600 800
1 13 14 17 18
2 16 18 20 21
3 20 15 18 19
and so on...
where each column represents a y-value for a given x-value. The first line ...
0
votes
1answer
37 views
grid scrolling by code in C#
I want scroll gridview by code in C#. when I added a row,then gridview show the last row. I used this:
dataGridView1.CurrentCell = dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1];
but does ...
0
votes
1answer
35 views
php explode mysql row
i have looked but am unable to find the answer i need.
i am trying to explode a row in mysql that containt multiple banner file names.
<?php
$str = 'one|two|three|four';
// positive limit
...
0
votes
1answer
31 views
How to select UIPicker first row value xcode?
This is my code but its not working properly
I want to select first row value when i press the done button
I tried this code, there are two views and and in each view there are two pickers,
if i ...
-1
votes
3answers
32 views
How to make listview with clickable item as well as row
I want clickable on item as well as click able on row of listview.in adapter i set clickable for some item
0
votes
0answers
11 views
Excel Auto Delete
I'm a total excel newbie, so dumbing down your answers as much as possible would be super helpful.
I'm dealing with a table that has around 600.000 lines of data. Entries in Column A are repeated ...
1
vote
2answers
34 views
Call row with link and Id [closed]
firstly let me say i'm still a noob so the more descriptive you are the better.
My question is, how can you locate and echo content of a specific row using the row id in the url bar. Example: Row 4: ...
1
vote
4answers
45 views
How can i inflate three layouts in ListView?
I have a custom listView in which i want to inflate three different layouts.
I have seen many questions but they are all for odd and even position but in my listView the layout that should be ...
0
votes
2answers
29 views
PHP While wont return first row
got a problem with my while statement, it will not display the first row & I have no idea why, any help would be appreciated.
<?php
$user = $_SESSION['username'];
$result = ...
0
votes
1answer
20 views
#1452 - Cannot add or update a child row: a foreign key constraint fails
When I wan't to connect two tables with eachother then I get the message : #1452 - Cannot add or update a child row: a foreign key constraint fails....I want to connect oauth_uid2 (primary key) from ...
0
votes
2answers
57 views
Excel 2003 - Macro to delete multiple rows by cell value
Goal: I am looking for a macro that can delete multiple rows based on cell criteria in one column, but I want the macro to ask for a value each time it is run rather than having a set value included ...
1
vote
1answer
30 views
Numpy rows susbstitution
I am new to Numpy and I am not an expert programmer at all...
This is my issue:
I have array a and array b (b < a).
I want to substitute some rows of a with all the rows of b (in order).
The ...
0
votes
1answer
12 views
Excel Group feature - inserting rows
I'm working with Excel 2010, using the Group feature to collapse (and then show) groups of rows.
This works well until the point that I insert additional rows copied from another worksheet. Choosing ...
0
votes
1answer
20 views
cannot find the correct syntax for this
I have a row in the table:
//*[contains(text(), 'Cape Town')]
and the delete graphic:
//*[contains(@id, 'DeleteLinkButton')]
in the table.
How do I click on //*[contains(@id, ...
0
votes
1answer
16 views
Auto delete line
I have create a table of Different Operators, handling different Vessel and having different code. I want to be able to auto delete the table based on the 1 Operator on each worksheet (which I have ...
-1
votes
1answer
17 views
SSRS : Get Row value
thus it possible to get the row value in my report and put in textbox?
For example in my Row value, I have
ID
1
2
3
4
I want it to put in textbox with value of 1, 2, 3, 4.
Regards,
0
votes
2answers
28 views
Inline declared MySQL 'unknown column'
Here's the script I'm trying to run:
$resultadosPromediados = R::getAll("SELECT count(*) as total,
SUM(dialogue_score) / total as dialogue_score,
...
0
votes
0answers
44 views
Select and Display ONE element(row) of JSON data?
I have a bit of experience with php and mysql, but am just getting into javascript/ajax/json and I am a bit confused.
I can now do a mysql query and return the json_encoded data,
I found a script ...
0
votes
1answer
35 views
Oracle combine two rows into one
I have a result like this:
15.04.13 5 Doe, John 2431 null null 46 560 0 null 0
15.04.13 5 Doe, John 2431 paid 525 0 0 585 null 60
this is the result of a union ...
0
votes
1answer
54 views
Cassandra ttl on a row
I know that there are TTLs on columns in Cassandra. But is it also possible to set a TTL on a row? Setting a TTL on each column doesn't solve my problem as can be seen in the following usecase:
At ...
7
votes
1answer
106 views
Row Percentages in crosstable generated from summary() from the Hmisc package
I have been trying to learn to use the summary()-function from the Hmisc-package to generate crosstables that include chisquared tests. With help from this board I'm almost there. I just can't figure ...
0
votes
1answer
24 views
JqxGrid: Change color of row based on value of column
I referred few answer from this forum
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-cellsrendering.htm
...
0
votes
3answers
69 views
Removing row and column of matrix after looking for a value (C)
I made a question some hours ago but I get myself in a mess on what I had to do after finishing what I was asking on that question. All the solutions that the people gave me were ok, but useless for ...
2
votes
7answers
59 views
(C) Getting the 3 minimum elements of an row in a matrix, and choose one randomly
I've a 8x8 matrix, and after choosing the row I desire, I want to get the three minimum elements of it, and choose one of this three randomly. The thing is that I'dont know how to handle those three ...
0
votes
1answer
42 views
SQL - Why isn't my query working?
I have a PHP/MySQL application where I have users, groups, and rights :
Each user can be in 0..N groups
Each group can have 0..N users
Each user can have 0..N rights
Each right can be granted to ...
0
votes
0answers
22 views
update datagridview when row is added
I have a list that I bind to datagridview like this:
SyncList<MyClass> myList = new SyncList<MyClass>();
dataGridView1.DataSource = myList;
When I update MyList, datagrid ...
0
votes
1answer
46 views
Generalizing ROW() and SUM() - excel
What I would like to do is something like this:
=SUM(A(ROW()):E(ROW()))
so this formula would take a sum of all the elements from column A to E in the current row.
Is this possible or should I take ...
0
votes
0answers
36 views
Getting the same row in listview from sqlite
When i get the users from my sqlite database and send it to listview i get only the last user duplicated the amout of users i have. I dont know why , this is bugging me for some time now.
I am sure ...
0
votes
3answers
53 views
Bootstrap span inside a span
I have some difficulties to understand how put span inside span with bootstrap.
I want to have one block centered, with inside :
-One row with inside :
-One block at left (span6)
-One block ...
