Page 1 of 1

is there a more native drop down select component available?

Posted: Fri Mar 13, 2015 7:27 pm
by Aeneas McBurney

I'm looking for a select drop down that is at bottom of screen. The one in appery appears in the middle of the screen and is quite cumbersome. Also when you fill from data service it always has a blank item at the top. Are there any other options?


is there a more native drop down select component available?

Posted: Sat Mar 14, 2015 8:44 am
by Illya Stepanov

Hi Aeneas -

Everything that is possible within jQuery mobile is provided in our builder, and nothing more.


is there a more native drop down select component available?

Posted: Sat Mar 14, 2015 6:51 pm
by Aeneas McBurney

How do I get this type of select?

Image


is there a more native drop down select component available?

Posted: Sun Mar 15, 2015 1:36 pm
by Illya Stepanov

Is it from official site, could you please share a link?


is there a more native drop down select component available?

Posted: Sun Mar 15, 2015 5:16 pm
by Aeneas McBurney

is there a more native drop down select component available?

Posted: Sun Mar 15, 2015 6:42 pm
by Alena Prykhodko

Hi Aeneas,

This is pretty custom case and falls outside the scope of standard support.
Show us what you have tried and does not work, so we can advise.


is there a more native drop down select component available?

Posted: Tue Mar 17, 2015 12:34 am
by Aeneas McBurney

How do I make the below dropdown contents

  1. Appear under the dropdown parent;

  2. Have a white background;

  3. Have a smaller font; and

  4. Not show the blank item at the top?

    Image


is there a more native drop down select component available?

Posted: Wed Mar 18, 2015 9:32 am
by Egor Kotov6832188

Hello Aeneas,

Select your component on the page and tick option "Native"
it should solve your problem


is there a more native drop down select component available?

Posted: Wed Mar 18, 2015 6:24 pm
by Aeneas McBurney

I have done that and now the selected text is centered. How do I get it back to the left?

Image


is there a more native drop down select component available?

Posted: Fri Mar 20, 2015 3:57 am
by Yurii Orishchuk

Hi Aeneas,

Here is a solution to align selected value in the left:

  1. Activate your select component and set "leftAlignText" as class name.
    Details: http://prntscr.com/6iz017/direct

  2. Add new CSS asset.

  3. Populate it with following CSS code:

    pre

    .leftAlignText .ui-btn span{
    text-align: left;
    }

    /pre

    Details: http://prntscr.com/6iz0bo/direct

    Then you will get following result: http://prntscr.com/6iz0jv/direct

    Regards.