jQWidgets Forums

Tagged: 

This topic contains 4 replies, has 2 voices, and was last updated by  Peter Stoev 10 years, 2 months ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    small bug ? Posts
  • small bug ? #67148

    tforgeard
    Participant

    line 57 of jqxbuttongroup :
    if (that.width.toString() && that.width.indexOf(‘%’) >= 0) {
    should be :
    if (that.width.toString() && that.width.toString.indexOf(‘%’) >= 0) {

    to me it seems ?

    small bug ? #67151

    Peter Stoev
    Keymaster

    Hi tforgeard,

    That is not a bug. Actually, your proposal is a bug.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

    small bug ? #67158

    tforgeard
    Participant

    toString() of course

    small bug ? #67159

    tforgeard
    Participant

    In my case, that.width is a number and

    (25).indexOf(“%”) ===> TypeError: undefined is not a function

    Maybe it’s not a bug but il looks like un bug …

    It works after correction

    small bug ? #67215

    Peter Stoev
    Keymaster

    Hi tforgeard,

    Why do you set width at all? The button group accepts only percentage values and only when it’s orientation is vertical.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.