Tagged Questions
The alternating tag has no wiki summary.
6
votes
4answers
158 views
Haskell - alternating elements from two lists
I'm trying to write a haskell function that takes in two lists of integers and generates a list with elements that have been taken alternatingly from the two lists.
I have the function:
blend xs ys
...
1
vote
1answer
160 views
Rails cycle helper with a few exceptions
I'm using the Rails cycle() helper method in the standard way with table rows to make alternating rows different background colors. However, I want an occasional row or two (that match certain ...
1
vote
1answer
77 views
RegExp function not working with alternation
string=string.replace(RegExp(filter[a]+" | "+filter[a],"g"),filter[a])
For some reason, this isn't affecting both the filter followed by the space and the filter with a space in front. Assuming the ...
0
votes
1answer
49 views
Alternating rows based on a value of a column in MySQL
I have a problem with selecting alternating rows in mysql -
Image:
CREATE TABLE `images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`file` varchar(255) DEFAULT ...
0
votes
3answers
67 views
Trying to get table row hovering background color to work with zebra striping rows
I'm willing to do the best method for IE8+
I'm wanting alternating row colors (#fff, #efefef) for my table and also have a hovering effect so the background changes to #D2DEE8. I would love to just ...
0
votes
4answers
64 views
How can I create alternating background colors for listview rows while only using ItemTemplate?
How can I create alternating background colors for listview rows while only using ItemTemplate? I don't want to use AlternateTemplate because I would have to edit both of them everytime i want to ...
0
votes
0answers
43 views
Alternate Table Row Colors with Multi-level Rowspans
This has been asked before, but the answer that was accepted and worked for most people doesn't actually work 100% when you get into more complex tables.
Check out the original post here: Alternate ...
0
votes
3answers
114 views
CSS tr background not working IE7
The tr background property doesn't seem to work in IE7. I want to make the bgcolor of the row alternating and then have it a different color when the mouse is on the row. So I can't use table tbody ...
0
votes
3answers
143 views
Alternating color rows in PHP loop
How can I have an alternating color rows in my php loop?
$num = mysql_num_rows($qPhysician);
$i=0;
while($i < $num)
{
echo "<tr>";
echo "<td>" . ...
0
votes
0answers
111 views
Winform Treeview.Treenodes backcolor alternance
I use VB.Net, Winform and an owner drawn TreeView. I want to alternate the background color of treenodes. I can already change the colors, but if I expand/collapse a node, I need to change colors of ...
0
votes
2answers
116 views
Jquery Parsing XML - Alternating Row Colour
How do I add code to the following to alternate the row color
parsedata = function(xml){
var str = "";
var cart = xml.documentElement.firstChild;
...
0
votes
2answers
408 views
Update alternating list row color after removal using jQuery
I am using jQuery to alternate the background colors and add radii to some unordered list items like so:
// Alternate row colors for group listing and add top/bottom radii
...
0
votes
7answers
255 views
Simple jQuery works in HTML, not ASP.NET
jQuery noob here, trying to produce alternating row background colors. This works in HTML:
<script type="text/javascript">
$(document).ready(function() {
...
0
votes
3answers
206 views
PHP, alternating weeks logic
I need to write some code in PHP that performs an action only on alternating weeks, based on the day of the week (mon, tue etc) rather than the number (1st, 7th etc).
So on a cycle starting on a ...
0
votes
1answer
334 views
Get Alternating Row Status From DataGridView
if i change the backcolour of a datagridviewrow that belongs to a datagridview control using alternating row colours and i want to programatically change it back, how do i know if the row was a normal ...