Jump to content

Dropdown selectbox


Vixus

Recommended Posts

Hi i need some help with formating content in dropdown selectbox.

 

It consists of 2 parts, product and price.

I would like to allign product to the left (set truncate) and to allign price to the right and to fill up the empty space with dots, so that it looks like this:

 

|Product xyz.................100$|

|Product abcdef.........1.100$|

|Product Q......................20$|

 

Can anyone help me how to create that?

 

 

Link to comment
https://forums.phpfreaks.com/topic/182773-dropdown-selectbox/
Share on other sites

you could do something like

$product = "Product XYZ";
$price = 1004;
$total = 100; //100 chars for select
$dots = $total - strlen($product) - strlen($price);
$select = '';

for ($i = 0; $i < $dots; $i++)
{
$select .= '.';
}

$select = $product.$select.$price;

 

but then you have the problem with different characters taking up different amounts of space, i think you might need to look into using javascript or jquery etc?

Link to comment
https://forums.phpfreaks.com/topic/182773-dropdown-selectbox/#findComment-964676
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.