|
Hi there,
I'm a little stuck, it's due to my inexperience with html/css and iframes.
Basically, I've got a LH column, which is my menu. and a RH column which house's my content. the RH column is a iframe.
The problem is i can't get the height of the iframe...
Started by Cam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's happening because '100%' in CSS terms only takes up as much space ... .
And if there is, it probably isn't easy.
I'm not 100% sure on this, but I'm fairly certain that there is no way to do this without using JavaScript to dynamically size the iFrame .
|
|
When defining a database access object for use in cl-postmodern, what should the :col-type be for a Many to Many field?
Started by Mitch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Without looking at the code, how about an integer?
The answer is that there is no :col-type.
|
|
Here is the code I have written in java I think it is right. I am just not sure what to set result to? I want to return the element associated with the specific row column
public int getElement(int row,int col){ int result = 0; if(((row>=1) && (row...
Started by Ben Fossen on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
][15]; // 10 row and 15 col public int getElementAt(int rowIndex, int colIndex) { int ret; if( rowIndex[row][col];
But since you did not actually disclose the rowArray declaration and the colArray look like:
public int getElement(int row....
|
Ask your Facebook Friends
|
If I think of the x,y coordinate plane x,y is the common notation for an ordered pair, but if I use a two-dime array I have myArray[row][col] and row is the y and col is the x. Is that backwards or am I just thinking about it wrong? I was thinking it ...
Started by johnny on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But it is really coordinate, and the column number is an x coordinate, and yet we usually write row,col but we also.
So, in my mind it is array[col][row].
Think of a one-dimension array as a row of cell .
|
|
I just had a quick css form question. I am trying to get the textarea's rows, and cols attribute set in css. So for example how can I do this in CSS.
Started by Suj on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Css for styling and HTML for markup.
Besides, that isnt what css is for anyway.
.comments { width:300px; height:75px; } <textarea class="comments"></textarea>
As far as i know you cant .
Width and height are used when going the css route .
|
|
It seems that to be XHTML compliant an HTML textarea needs to have the cols property set. I want to use CSS instead so I can just expand the textarea to 100% style="width: 100%;"
How should I be doing this in a standards compliant way?
Started by Ryan Smith on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you specify the width using CSS the cols and rows attributes don't have ....
I usually set a reasonable cols and rows amount, like 60 and 5.
That way, if CSS is disabled or not implemented on the target browser, it still works .
Use both.
|
|
I'm trying to create a table to display an individual's BMI.
As part of this, I'd like, on :hover, for the <tr> and <col> (or <colgroup> ) to be highlighted also, in order for the intersection to be more apparent.
As the table will feature...
Started by ricebowl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Never even seen a :hover work on a col/colgroup so not sure if that's possible.
Work in Firefox.
|
|
I'm doing Select * From table Where Col IN (123,123,222,....)
If I put more than ~3000 numbers in the IN clause SQL throws and error.
Does anyone know if there's a size limit or anything?!!
Thank you.
Started by luvPlsQL on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Your values into separate blocks of in()
Select * From table Where Col IN (123,123,222,....) or Col.
|
|
Hi. I'm trying to SELECT from the dba_tab_cols view from within a stored procedure. It's not working and I don't know why.
If I execute the following SQL as a query:
SELECT t.data_type FROM dba_tab_cols t WHERE t.table_name = 'ACCOUNTTYPE' AND t.column...
Started by JJ on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is the permission to access dba_tab_columns via a role or is it a direct select grant to your user? Priviledges granted... .
It's most likely a priviledges issue.
I'd try something else.
I don't have oracle installed, but perhaps dataType is a reserved word .
|
|
Example:
<style type="text/css"> table { border: 1px solid red; border-collapse: collapse; text-align: left; } #col-1 { padding-left: 20px; background-color: tan; } #specific-cell { padding-left: 20px; } </style> <table> <col id="...
Started by mfn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This works for me in IE with the following DOCTYPE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
and the styles
#col-1 { padding-left: 50px; background-color: tan; } #col-2 { padding-left: 100px; background-color: lightgreen; }
... .
|