TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Olivier Muhring
1.5k
262
9.1k
How to draw a red line on a HTML table on a certain heighth
Jul 5 2016 11:51 AM
On a bootstrap based web page I'm displaying the following table
This was generated with the following code:
<div
class
=
"row"
>
<div
class
=
"col-lg-12"
>
<div
class
=
"table-responsive"
>
<table
class
=
"table table-bordered table-hover table-striped"
>
<thead>
<tr>
<th
class
=
"text-right success"
>Count</th>
<th
class
=
"text-right success"
>Lower</th>
<th
class
=
"text-right success"
>Upper</th>
<th
class
=
"text-right success"
>Price</th>
<th
class
=
"text-right success"
>Cost</th>
</tr>
</thead>
<tbody>
@
foreach
(var dataRow
in
staffelData)
{
var differenceWithUpper = 0;
if
(dataRow.Upper.HasValue)
{
differenceWithUpper = countValue - dataRow.Upper.Value;
}
else
{
differenceWithUpper = -1;
}
var cost = 0.0;
var inScope = 0;
if
(differenceWithUpper >= 0)
{
inScope = dataRow.Upper.Value;
}
else
{
if
(countValue >= dataRow.Lower.Value)
{
inScope = countValue - dataRow.Lower.Value;
}
}
cost = inScope * Decimal.ToDouble(@dataRow.PnrFee);
<tr>
<td
class
=
"text-right fit"
>@pnrsInScope</td>
@
if
(@dataRow.Lower.HasValue)
{
<td
class
=
"text-right fit"
>@dataRow.Lower.Value</td>
}
else
{
<td
class
=
"text-right fit"
>N/A</td>
}
@
if
(@dataRow.Upper.HasValue)
{
<td
class
=
"text-right fit"
>@dataRow.Upper.Value</td>
}
else
{
<td
class
=
"text-right fit"
>N/A</td>
}
<td
class
=
"text-right fit"
>@dataRow.Fee @dataRow.Currency</td>
<td
class
=
"text-right fit"
>@cost @dataRow.Currency</td>
</tr>
}
</tbody>
</table>)
</div>
</div>
</div>
I still need 2 add 1 feature though: I have to display an average value in the same table. I was thinking to draw a line @ the level in the table the average can be found.
Could anyone here explain me how to best get this done
Reply
Answers (
3
)
How to stop button from insert empty value
Not to reload a page on button click