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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.