jQWidgets Forums

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Tree drag and drop Tree drag and drop #48740

    goooseman
    Participant

    Thanks for the heads up peter.

    Another question though, when dropping an item, the dragEnd callback function has the dropPosition parameter, and I noticed that its values are always before, after and inside. Is there any way to disable before and after? Because if you drag an item and hover it on the the nodes, there’s an empty display before and after a node. I just want to give the inside option to users to make sure that the dragged item will be dropped inside a node.

    in reply to: showvalidationpopup showvalidationpopup #16324

    goooseman
    Participant

    Hi Peter S,

    I figured out the error regarding the scrollbar in IE8, because its trying to set the style width of the div by a negative value.
    I checked other browsers, it is still negative but I think they just ignored it and use 0.

    jqxscrollbar.js Line 923 (unminified version)

    n[0].style.width = k + “px”; // value of k is -4

    If i change that line to:

    n[0].style.width = Math.max(k, 0) + “px”;

    its working properly.

    Any thoughts?

    Regards,

    goooseman

    in reply to: showvalidationpopup showvalidationpopup #16317

    goooseman
    Participant

    Hi Peter S.,

    Any updates on this issue?

    Also,
    I have an editable column with columntype ‘datatimeinput’, in other browsers (FF, Chrome and IE9), when i double click a cell from that column, it changes to a textfield with a calendar icon which is correct. But in IE8, its giving me an error about the jqxscrollbar.js.

    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MDDSJS)
    Timestamp: Mon, 4 Mar 2013 19:16:24 UTC

    Message: Invalid argument.
    Line: 7
    Char: 22743
    Code: 0
    URI: http://localhost/javascript/jqwidgets/2.7.0/jqxscrollbar.js

    Regards,

    goooseman

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