473,320 Members | 1,817 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Restrict the Table TD size.

Hi,
I am working in a framework based project where my html
page is rendered inside that framework. The framework code is
done by other team and that can not be modified.

Here is my problem :

<table>
<<snip parts by framework>>
<tr>
<td><img src="/s.gif" alt="" border="0" height="1" width="9"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0"
width="100%"><tr><td><img src="/s.gif" width="1" height="3"
alt=""></td></tr><tr><td>Logged User:ME</td></tr></table>
<!-- My table goes here-->
<table>..</table>
<!-- My table ends here-->
</td></tr></table>

I want to have my table to grow at any size..but I want to keep the
framework table to some specified limit. As the framework table has
100% it is growing with my table.

Is there any possibility that we can separate the dependency of
growing framework table on my table?

thanks,
Guru.
Jul 23 '05 #1
2 18567
"Guru" <ra******@yahoo.com> wrote in message
news:ab**************************@posting.google.c om...
Hi,
I am working in a framework based project where my html
page is rendered inside that framework. The framework code is
done by other team and that can not be modified.

Here is my problem :

<table>
<<snip parts by framework>>
<tr>
<td><img src="/s.gif" alt="" border="0" height="1" width="9"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0"
width="100%"><tr><td><img src="/s.gif" width="1" height="3"
alt=""></td></tr><tr><td>Logged User:ME</td></tr></table>
<!-- My table goes here-->
<table>..</table>
<!-- My table ends here-->
</td></tr></table>

I want to have my table to grow at any size..but I want to keep the
framework table to some specified limit. As the framework table has
100% it is growing with my table.

Is there any possibility that we can separate the dependency of
growing framework table on my table?


Wrap the framework table in a div section with a specified width,
that way, the table's 100% will be related to 100% of it's parent
(the div)

<div style="width:500px;">
<table>
<<snip parts by framework>>
<tr>
<td><img src="/s.gif" alt="" border="0" height="1" width="9"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0"
width="100%"><tr><td><img src="/s.gif" width="1" height="3"
alt=""></td></tr><tr><td>Logged User:ME</td></tr>
</table>
</div>

<!-- My table goes here-->
....

--
Dag
58°26'15.9" N 008°46'45.5" E
Jul 23 '05 #2
No . that is also the part of framework.
My control starts from
<!-- My table goes here-->
I can not make a wrapper div over the framework code.
Sorry if i explained wrong in my previous post.

"Dag Sunde" <ds@orion.no-way> wrote in message news:<nv*****************@juliett.dax.net>...
"Guru" <ra******@yahoo.com> wrote in message
news:ab**************************@posting.google.c om...
Hi,
I am working in a framework based project where my html
page is rendered inside that framework. The framework code is
done by other team and that can not be modified.

Here is my problem :

<table>
<<snip parts by framework>>
<tr>
<td><img src="/s.gif" alt="" border="0" height="1" width="9"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0"
width="100%"><tr><td><img src="/s.gif" width="1" height="3"
alt=""></td></tr><tr><td>Logged User:ME</td></tr></table>
<!-- My table goes here-->
<table>..</table>
<!-- My table ends here-->
</td></tr></table>

I want to have my table to grow at any size..but I want to keep the
framework table to some specified limit. As the framework table has
100% it is growing with my table.

Is there any possibility that we can separate the dependency of
growing framework table on my table?


Wrap the framework table in a div section with a specified width,
that way, the table's 100% will be related to 100% of it's parent
(the div)

<div style="width:500px;">
<table>
<<snip parts by framework>>
<tr>
<td><img src="/s.gif" alt="" border="0" height="1" width="9"></td>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0"
width="100%"><tr><td><img src="/s.gif" width="1" height="3"
alt=""></td></tr><tr><td>Logged User:ME</td></tr>
</table>
</div>

<!-- My table goes here-->
...

Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Guru | last post by:
Hi, I am working in a framework based project where my html page is rendered inside that framework. The framework code is done by other team and that can not be modified. Here is my problem : ...
1
by: hristov.milen | last post by:
Hi, Is there a way to restrict selecting from a table.. I have problem with one check, I have select and after this insert based on the select. If it happen in one time .. I can insert...
3
by: razheev | last post by:
Hi, I am doing a purge process and trying to delete rows .Let me know how efficiently I can handle the purge process because of the RI on the tables. TABLE A is a PARENT of TABLE B, TABLE C,...
4
by: Neil Coleclough | last post by:
I am constructing a database to process product returns for my Company. I have a number of toggle buttons to identify the stage to which each return has been processed. For example, clicking the...
8
by: shorti | last post by:
Here is an example of what I want to do (syntax might not be entirely correct as this is just an example): CREATE TABLE ParentA ( name CHAR (6) NOT NULL; address CHAR(64); ) IN CUSTOMER_TS...
1
by: Uncle Sam | last post by:
how to restrict data insertion upto 50 MB in a table?
21
by: Niu Xiao | last post by:
I see a lot of use in function declarations, such as size_t fread(void* restrict ptr, size_t size, size_t nobj, FILE* restrict fp); but what does the keyword 'restrict' mean? there is no...
5
by: Dakrat | last post by:
Allow me to preface this post by saying that this is my first database project, and while I have learned a lot, any concepts I have learned are hit and miss as I have found new requirements and...
5
by: Arun Srinivasan | last post by:
The table became inaccessible due to an error during an insert in 'not logged' mode. Now I can't drop it, since it was declared using 'restrict on drop'.. Pleaseeeeee heklp. It's using 400...
4
by: chazzy69 | last post by:
The problem is as follows, i am inputing text and images from another source via my php script, now when i try to display the text and images into a page of my own styling the text and images skewed...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.