Questions tagged [divider]

393 questions
0
votes
1 answer

Fizzbuzz counters 1-20 and check for divideables and not dividables

So i have a problem with java that when i run the program the console prints out this "12Fizz4BuzzFizz78FizzBuzz11Fizz1314FizzBuzz1617Fizz19Buzz" what i want it to do is , if its dividable with BOTH 3 and 5 then print out fizzbuz if divideable…
user2764700
  • 29
  • 3
  • 3
  • 7
0
votes
3 answers

Getting one too few divisors

This is a program to count the number of divisors for a number, but it is giving one less divisor than there actually is for that number. #include int i = 20; int divisor; int total; int main() { for (divisor = 1; divisor <= i;…
kyle k
  • 5,134
  • 10
  • 31
  • 45
0
votes
1 answer

DISTINCT values with ", " divider in GROUP_CONCAT

GROUP_CONCAT(g_value,", ") This gives me all values with [comma]+[space] divider apple, orange, banana, apple, apple GROUP_CONCAT(DISTINCT g_value) This gives me only distinct values with "," divider without space. apple,orange,banana How to…
Joe Rakhimov
  • 4,713
  • 9
  • 51
  • 109
0
votes
2 answers

Putting Button within divider in css

I wanna implement this idea by css : What is the best approach to do that in CSS ? Thanks very much !! UPDATE I've did this trick before with Headings , More information here : Putting Heading within 2 horizontal lines in CSS But when i tried to…
Khalid Khalil
  • 419
  • 1
  • 6
  • 14
0
votes
0 answers

How to style SherlockActionBar menuitem divider

How can I change the color of divider in menuitem (SherlockActionBar)? For better illustration:
Roy Lee
  • 10,572
  • 13
  • 60
  • 84
0
votes
2 answers

How to divide string in php

How can I add divider ; in the following variable which contains string I have string like this: $filename = "a.jpg3c.pngyes.jpg"; I would like to have something like a.jpg;3c.png;yes.jpg This string is created when I select multiple files to…
user123_456
  • 5,635
  • 26
  • 84
  • 140
0
votes
1 answer

Opacity of background-color of divider without text being faded

Is there a way to have the background image of a divider to have it's opacity changed without the text being affected? The website I'm working on is ubertechnews.com for the category backgrounds on the front page. Very annoying. The specific code…
0
votes
1 answer

how to create auto list dividers when dynamically creating a list in jquery mobile

I've created a list of messages dynamically. I have a
    tag and I'm generating a list inside dynamically. However, I don't know how to add list dividers to this. Would there be a refresh method in js that I can call which would add dividers after…
DannyD
  • 2,732
  • 16
  • 51
  • 73
0
votes
1 answer

dashed dividers in vertical ListView (Android)

I went through all of the dashed divider topics alrady, but somehow my issue persists: I have a vertical LinearLayout and want to display dashed dividers between each item in the LinearLayout. I use the following shape, but still get a straight…
Johannes
  • 223
  • 3
  • 11
0
votes
1 answer

CSS Height Issue With Floating Bar 100%

So, quickly typing this, so sorry if it's kinda vague/confusing. So, I have a bar I am using css on the bottom of the screen, and I have a divider above it. I try to use height 100% on the divider to get the height to go all the way to the bottom,…
PaulBGD
  • 2,018
  • 5
  • 22
  • 30
0
votes
1 answer

How can I get the drawable of the listview Divider to reuse it?

I have a little tweak in my application: my Listview is placed between 2 LinearLayout that looks like my ListView rows. That's a little trick that allows me to always display first and last item and my layout looks…
Waza_Be
  • 39,407
  • 49
  • 186
  • 260
0
votes
3 answers

How to create a pixel perfect divider using css border

I have a menu with background black and submenu with backgound grey. Now I would like to have a pixel perfect divider between them. But I have no idea what border color I should use to get pixel perfect divider. Can anyone help me? Here is the…
Giri
  • 4,849
  • 11
  • 39
  • 48
0
votes
1 answer

Drupal - how to include "|" as a dividor for each menu item

I am using Drupal 7 with Zen theme. I want to add a menu in the navigation bar with the following requirements: 1. background:grey 2. a divider "|" dividing each menu item 3. no underline for the menu item I was able to accomplish #1 in the…
mwalsh
  • 11
  • 1
  • 4
0
votes
1 answer

Android gridview divider drawable between images

I have a gridview of images, i need to add one drawable image as a separator between images in gridview. anyone help me how to add.?
Vishwanath.M
  • 6,235
  • 11
  • 42
  • 56
0
votes
1 answer

Android ListView divider near group header

I have PreferenceActivity with several PreferenceGroup. The ListView doesn't show a divider above and under the header of PreferenceGroup. How does it know whether to show that header or not? Let's say I have a ListView with custom adapter. How can…
Sebastian Nowak
  • 5,607
  • 8
  • 67
  • 107