Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Increasing spinnerItem's height does not increase its slider height

    Hi,

    Using the setHeight for the spinerItem increases the height of the textbox but not the slider. Below if the code and attaching the screenshot as well.

    spinnerItem = new SpinnerItem();
    spinnerItem.setWidth(25);
    spinnerItem.setShowTitle(false);
    spinnerItem.setDefaultValue(1);
    spinnerItem.setStep(1);
    spinnerItem.setColSpan(1);
    spinnerItem.setHeight(25);
    spinnerItem.setPickerIconHeight(25);


    Please can you tell a a way to align both, (the text box and the slider) parts of the spinnerItem in the same manner.
    Attached Files

    #2
    You need to adjust the height of the INCREASE_ICON and DECREASE_ICON (see skinning guide for details).

    You also probably want replacement media, because the existing media would be stretched vertically and look imperfect.

    Comment

    Working...
    X