0
votes
2answers
21 views
how to initialize UITableView? Both from XIB and programmatically?
Hi all,
I have a simple request that I have spent much time on (embarrassingly)..
I have sub-classed a UITableView to add some functionality. These new features require things like NSMutableSet …
1
vote
7answers
652 views
slideToggle table row using Jquery Help!
Hey, I have been trying for over a week now to slideToggle a table row when the 'more info' button is clicked but nothing seems to be working at all.
I'm new to Jquery so if anyone ca help me …
2
votes
4answers
109 views
How can I create a type based lookup table in order to implement multiple-dispatch in C++?
I'm attempting to make a messaging system in which any class derived from "Messageable" can receive messages based on how the function handleMessage() is overloaded. For example:
class Messageable
…
1
vote
1answer
20 views
jQuery - Append <th> Class to <td> in the Same Column
I've been searching all over the net for hours now but I still can't figure this out.
<table>
<tr>
<th class="name">Name</th>
<th …
1
vote
3answers
51 views
Database column naming question
Let's suppose there is a table called AIRPORT and I have to choose between two naming conventions:
to name attributes like AP_CODE, AP_NAME and so on
or to name them just like CODE, NAME
The question …
0
votes
1answer
22 views
In Lua, how do I remove a table within a table?
For example:
items = {
[753] = {
},
[192] = {
},
[789] = {
},
[791] = {
},
[790] = {
},
[776] = {
},
}
I would like to remove 789 and all data inside …
0
votes
2answers
29 views
mysql - table design for embeding system
I am working on an embedment section on my site where users can embed different media from various services, youtube, myspace music, vimeo etc
I am trying to work out the best way to store it. Users …
1
vote
6answers
59 views
HTML: Spanning a form across multiple td columns
I'd like to be able to do something like this in HTML. It isn't valid HTML, but the intent is there:
<table>
<tr>
<th>Name</th>
<th>Favorite …
0
votes
3answers
32 views
Colorize negative/positive numbers (jQuery)
I'd like to color numbers in a table for better readability:
green for positive (+00.00);
red for negative (-00.00) and;
black for default case (no sign)
Many thanks!
0
votes
2answers
51 views
Custom table component in .net
How do I create a custom table in C#, where i'd be able to set up row titles? Is there a built-in component to do that?
I'm currently migrating from Delphi, where there was a StringGrid component. So …
0
votes
1answer
21 views
Setting proportional column width with <col width=”x*” />
I am trying to set proportional column width with <col width="x*" />:
<table width="600px">
<col width="1*" />
<col width="2*" />
<col width="3*" />
…
13
votes
10answers
7k views
I need my html table’s body to scroll and its head to stay put
I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter …
-1
votes
4answers
41 views
Limit the # of rows being housed in a SQL table
This is a table design issue. I have a table that stores IP addresses. The data in the table is queried very heavily. The IPs can have different flags such as "unblocked", "temporarily blocked" and …
0
votes
2answers
25 views
TSQL table based function returning different tables
Hi,
I am triyng to write a table based fuction so it returns a different results depending of the value.
I have:
CREATE FUNCTION [dbo].[tblfn_GetAnyDataSet_As_View]
(@DataType as varchar(50))
…
0
votes
2answers
25 views
should nested tables have any horizontal space in between them
i think i have set all padding, margin, border-spacing, etc to 0 but i have a nested table within another table and there is a very tiny (but visible) horizontal space.
I know this as the backcolor …
