Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
8k views

Centering Text within a Multirow Cell in LaTex

This is probably best explained with an example. I have the following table, where the "A" cell spans two rows, and the "B" cell spans two columns. \begin{table}[htdp] \begin{tabular}{l|r|r} ...
5
votes
1answer
2k views

Latex: how to break the line in multirow inside the tabular

I cannot find out how to break the line inside the multirow in tabular. I need to make some table where I have one cell which is two row high, and I have long text in it, but it does not break the ...
3
votes
1answer
52 views

Updating a sequence of rows

I have a table sites and basically a travelling salesman problem. My boss wants to select a bunch of sites out of the list, then sort them manually into a visit order. I have looked for similar ...
3
votes
1answer
589 views

UITableViewCell animation when scrolling

I've implemented Cocoa with Love's example for Multi-row selection which involves creating a custom UITableViewCell that initiates an animation in layoutSubviews to display checkboxes to the left of ...
3
votes
1answer
6k views

Rowcolor on a multirow tabular in LaTeX

So I tried learning LaTeX last night, and I trying to get this template for school assignments done ASAP. Part of that requires building a table. I want to use multirow, but need the multirows, that ...
1
vote
2answers
356 views

LaTex: Is it possible to vertically center multiple columns in a table?

I've found an example here but that only centers one column and I can't really adapt it to my needs. What I'd like is something like this:
1
vote
3answers
367 views

Multirow insert into statement in MS Access

I'm an SQL newbie and trying to figure out how to insert multiple table entries in one SQL statement. Here is my code: INSERT INTO [Students](P_Id,FirstName,LastName,class,city,Phone) SELECT ...
0
votes
0answers
49 views

table header multicolumn and multirow latex [closed]

i am newbie with latex. I need to do a table like this: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | | | |_ _ _ _ _ _ _ _ _ _ _ _ _ ...
0
votes
1answer
230 views

Save Multiple Rows in DataBase Yii

I'm having some difficulties with Yii. In my project I have a two fields (and Id_status Artist) it is possible to insert multiple rows like the following example ...
0
votes
1answer
27 views

How get the multirow tabbar support in Komodo Edit environment?

Having always many, many, many Komodo tabs open, I would appreciate to find some solution to adjust the tabbar layout to support multirow tabs. Is there any add-on which adds multirow tabs support to ...
0
votes
2answers
221 views

to validate checkbox input for table using multiple rows

i using js to add multiple row in a particular table, but when submit the form all check box having the same value, so how can i validate this checkbox using js before submit so change value to if ...
0
votes
0answers
189 views

How to multi row header?

I'm happy to use SlickGrid! But, How to make multi row header?? plz.. example sorry i cant english well
0
votes
3answers
1k views

Latex: Problem with Multirow

I am creating a table with mulitrow but I am getting a problem. As far as I understand, this is the form of the multirow: \multirow{count}{alignment}{content} where count is the number of rows ...
0
votes
3answers
955 views

Can't I use “DECLARE” in table function?

Thanks for your message I solved my problem like this ALTER FUNCTION [VEZNE].[fnMakbuzIslemGetir] ( @refNo as int ) RETURNS @tablename TABLE (kontrol1 ...
0
votes
1answer
171 views

What is a good way to do multi-row updates in struts (with struts live)?

Without using DynaForm and it's kin. I would like to use a POJO data transfer object, e.g., Person: public class Person { private Long id; private String firstName; private String lastName; ...