473,405 Members | 2,354 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,405 software developers and data experts.

Can I Do This

I have an aspx page that includes a bound data repeater. In the ItemTemplate
section I display each row from the datasource as a set of fields in a row
in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td>
.....
</tr>

I want to insert a special output row whenever the value of "DataItem.Group"
changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that
header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item
Databind Event and change the rowheight to something like 12 and fill in the
correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne


Nov 18 '05 #1
8 1281
Wayne,

Add runat="server" to the <tr id=newclass ... > and in ItemDataBound event
set property Visible to false. The row won't render to the client at all.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:eK*************@TK2MSFTNGP09.phx.gbl...
I have an aspx page that includes a bound data repeater. In the ItemTemplate section I display each row from the datasource as a set of fields in a row
in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td>
....
</tr>

I want to insert a special output row whenever the value of "DataItem.Group" changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that
header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item
Databind Event and change the rowheight to something like 12 and fill in the correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne

Nov 18 '05 #2
Eliyahu;

Thanks for the response but the <tr> and <td> elements do not have a
"visible" property?

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Wayne,

Add runat="server" to the <tr id=newclass ... > and in ItemDataBound event set property Visible to false. The row won't render to the client at all.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:eK*************@TK2MSFTNGP09.phx.gbl...
I have an aspx page that includes a bound data repeater. In the

ItemTemplate
section I display each row from the datasource as a set of fields in a row in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td> <td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td> ....
</tr>

I want to insert a special output row whenever the value of

"DataItem.Group"
changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item Databind Event and change the rowheight to something like 12 and fill in

the
correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne


Nov 18 '05 #3
Wayne,

You are right. But when you add runat="server" your <tr> becomes
HtmlTableRow and <td> turns to HtmlTableCell. And they do have Visible.
Don't forget to switch to design view to get visual studio make changes to
the code-behind.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Eliyahu;

Thanks for the response but the <tr> and <td> elements do not have a
"visible" property?

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Wayne,

Add runat="server" to the <tr id=newclass ... > and in ItemDataBound

event
set property Visible to false. The row won't render to the client at all.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:eK*************@TK2MSFTNGP09.phx.gbl...
I have an aspx page that includes a bound data repeater. In the

ItemTemplate
section I display each row from the datasource as a set of fields in a row in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td> <td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td> ....
</tr>

I want to insert a special output row whenever the value of

"DataItem.Group"
changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item Databind Event and change the rowheight to something like 12 and fill in the
correct text.

It turns out that even though the height is set to 0 that row

displays?
Any suggestions on how to accomplish this?

Wayne



Nov 18 '05 #4
Eliyahu;

I must be missing something here. I added the runat="server", switched back
to Design View and back to the HTML view but I don't see any change in the
<tr> tag nor is there a "Visible" property. When you say that it changes to
a HTMLTableRow, where does that appear? That segment of my code is as
follows:

<tr id="newclass" bgcolor="#ffff66" runat="server" height="0">
<td id="newclasscol" runat="server" colspan="8" align="center"
height="0">New Class</td>
</tr>

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Wayne,

You are right. But when you add runat="server" your <tr> becomes
HtmlTableRow and <td> turns to HtmlTableCell. And they do have Visible.
Don't forget to switch to design view to get visual studio make changes to
the code-behind.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Eliyahu;

Thanks for the response but the <tr> and <td> elements do not have a
"visible" property?

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Wayne,

Add runat="server" to the <tr id=newclass ... > and in ItemDataBound event
set property Visible to false. The row won't render to the client at all.
Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:eK*************@TK2MSFTNGP09.phx.gbl...
> I have an aspx page that includes a bound data repeater. In the
ItemTemplate
> section I display each row from the datasource as a set of fields in a
row
> in a table. e.g.:
>
> <tr>
> <td align="center"><%# DataBinder.Eval(Container,"DataItem.Group")

%></td>
> <td align="center"><%# DataBinder.Eval(Container,"DataItem.Count")

%></td>
> ....
> </tr>
>
> I want to insert a special output row whenever the value of
"DataItem.Group"
> changes. That extra row will span all columns and display the value
of > "DataItem.Group" . I tried inserting a row with the layout I want
for that
> header row using the code below:
>
> <tr id=newclass bgcolor="#ffff66" height=0>
> <td height=0 colspan=8>New Class</td>
> </tr>
>
> I thought I could then catch the change in the DataItem.Group in the

Item
> Databind Event and change the rowheight to something like 12 and

fill in the
> correct text.
>
> It turns out that even though the height is set to 0 that row displays? >
> Any suggestions on how to accomplish this?
>
> Wayne
>
>
>
>



Nov 18 '05 #5
Wayne,

Sorry, I missed the point that you are doing this within ItemTemplate. You
still can set runat="server" for the <table>. Let the table build itself
with data binding and then, at the end, in PreRender event, loop through the
table, find the rows you want to hide and set for them Visible=false. You
can do it in either server script or code behind.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:Oj**************@TK2MSFTNGP09.phx.gbl...
Eliyahu;

I must be missing something here. I added the runat="server", switched back to Design View and back to the HTML view but I don't see any change in the
<tr> tag nor is there a "Visible" property. When you say that it changes to a HTMLTableRow, where does that appear? That segment of my code is as
follows:

<tr id="newclass" bgcolor="#ffff66" runat="server" height="0">
<td id="newclasscol" runat="server" colspan="8" align="center"
height="0">New Class</td>
</tr>

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Wayne,

You are right. But when you add runat="server" your <tr> becomes
HtmlTableRow and <td> turns to HtmlTableCell. And they do have Visible.
Don't forget to switch to design view to get visual studio make changes to
the code-behind.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Eliyahu;

Thanks for the response but the <tr> and <td> elements do not have a
"visible" property?

Wayne

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
> Wayne,
>
> Add runat="server" to the <tr id=newclass ... > and in ItemDataBound event
> set property Visible to false. The row won't render to the client at all.
>
> Eliyahu
>
> "Wayne Wengert" <wa***************@wengert.com> wrote in message
> news:eK*************@TK2MSFTNGP09.phx.gbl...
> > I have an aspx page that includes a bound data repeater. In the
> ItemTemplate
> > section I display each row from the datasource as a set of fields in a row
> > in a table. e.g.:
> >
> > <tr>
> > <td align="center"><%# DataBinder.Eval(Container,"DataItem.Group")
%></td>
> > <td align="center"><%# DataBinder.Eval(Container,"DataItem.Count")
%></td>
> > ....
> > </tr>
> >
> > I want to insert a special output row whenever the value of
> "DataItem.Group"
> > changes. That extra row will span all columns and display the
value
of > > "DataItem.Group" . I tried inserting a row with the layout I want for that
> > header row using the code below:
> >
> > <tr id=newclass bgcolor="#ffff66" height=0>
> > <td height=0 colspan=8>New Class</td>
> > </tr>
> >
> > I thought I could then catch the change in the DataItem.Group in

the Item
> > Databind Event and change the rowheight to something like 12 and

fill
in
> the
> > correct text.
> >
> > It turns out that even though the height is set to 0 that row

displays?
> >
> > Any suggestions on how to accomplish this?
> >
> > Wayne
> >
> >
> >
> >
>
>



Nov 18 '05 #6
Wayne,

You can try this:

1) Add another row to your template, but make the row invisible.
2) Handle the item bound event to track the group. You can do this by
maintaining a class member variable.
3) When the Group changes, then make the invisible row visible.

Basically, you add an additional row to every row of the data source,
but only show the additional row when the group changes.
sayed

"Wayne Wengert" <wa***************@wengert.com> wrote in message news:<eK*************@TK2MSFTNGP09.phx.gbl>...
I have an aspx page that includes a bound data repeater. In the ItemTemplate
section I display each row from the datasource as a set of fields in a row
in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td>
....
</tr>

I want to insert a special output row whenever the value of "DataItem.Group"
changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that
header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item
Databind Event and change the rowheight to something like 12 and fill in the
correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne

Nov 18 '05 #7
Sayed;

The problem is that there is no "visible" property on the standard <tr>

Wayne

"Sayed Hashimi" <ha***********@hotmail.com> wrote in message
news:3a**************************@posting.google.c om...
Wayne,

You can try this:

1) Add another row to your template, but make the row invisible.
2) Handle the item bound event to track the group. You can do this by
maintaining a class member variable.
3) When the Group changes, then make the invisible row visible.

Basically, you add an additional row to every row of the data source,
but only show the additional row when the group changes.
sayed

"Wayne Wengert" <wa***************@wengert.com> wrote in message

news:<eK*************@TK2MSFTNGP09.phx.gbl>...
I have an aspx page that includes a bound data repeater. In the ItemTemplate section I display each row from the datasource as a set of fields in a row in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td> <td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td> ....
</tr>

I want to insert a special output row whenever the value of "DataItem.Group" changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item Databind Event and change the rowheight to something like 12 and fill in the correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne

Nov 18 '05 #8
Wayne,

You can make any html invisible by setting css rule display:none.

Eliyahu

"Wayne Wengert" <wa***************@wengert.com> wrote in message
news:eK*************@TK2MSFTNGP09.phx.gbl...
I have an aspx page that includes a bound data repeater. In the ItemTemplate section I display each row from the datasource as a set of fields in a row
in a table. e.g.:

<tr>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Group") %></td>
<td align="center"><%# DataBinder.Eval(Container,"DataItem.Count") %></td>
....
</tr>

I want to insert a special output row whenever the value of "DataItem.Group" changes. That extra row will span all columns and display the value of
"DataItem.Group" . I tried inserting a row with the layout I want for that
header row using the code below:

<tr id=newclass bgcolor="#ffff66" height=0>
<td height=0 colspan=8>New Class</td>
</tr>

I thought I could then catch the change in the DataItem.Group in the Item
Databind Event and change the rowheight to something like 12 and fill in the correct text.

It turns out that even though the height is set to 0 that row displays?

Any suggestions on how to accomplish this?

Wayne

Nov 18 '05 #9

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

Similar topics

4
by: James | last post by:
I have a from with 2 fields: Company & Name Depening which is completed, one of the following queries will be run: if($Company){ $query = "Select C* From tblsample Where ID = $Company...
5
by: Scott D | last post by:
I am trying to check and see if a field is posted or not, if not posted then assign $location which is a session variable to $location_other. If it is posted then just assign it to...
2
by: Nick | last post by:
Can someone please tell me how to access elements from a multiple selection list? From what ive read on other posts, this is correct. I keep getting an "Undefined variable" error though... Form...
2
by: Alexander Ross | last post by:
I have a variable ($x) that can have 50 different (string) values. I want to check for 7 of those values and do something based on it ... as I see it I have 2 options: 1) if (($x=="one") ||...
0
by: Dan Foley | last post by:
This script runs fine, but I'd like to know why it's so slow.. Thanks for any help out there on how i can make it faster (it might take up to 5 min to write these 3 export files whith 15 records...
5
by: Lee Redeem | last post by:
Hi there I've created abd uploaded this basic PHP script: <html> <head> <title>PHP Test</title> </head> <body> <H1 align="center">
5
by: christopher vogt | last post by:
Hi, i'm wondering if there is something like $this-> to call a method inside another method of the same class without using the classname in front. I actually use class TEST { function...
6
by: Phil Powell | last post by:
Ok guys, here we go again! SELECT s.nnet_produkt_storrelse_navn FROM nnet_produkt_storrelse s, nnet_produkt_varegruppe v, nnet_storrelse_varegruppe_assoc sv, nnet_produkt p WHERE...
1
by: Michel | last post by:
a site like this http://www.dvdzone2.com/dvd Can you make it in PHP and MySQL within 6 weeks? If so, send me your price 2 a r a (at) p a n d o r a . b e
11
by: Maciej Nadolski | last post by:
Hi! I can`t understand what php wants from me:( So: Cannot send session cache limiter - headers already sent (output started at /home/krecik/public_html/silnik.php:208) in...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.