Announcement

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

    Listgrid or FilterBuilder Dropdown boxes are freezed

    Hello Folks,

    I am showing editable listGrid in bootstrap modal.
    However, when I double click listgrid row, and edit value, something freeze dropdown list. But only on ListGrid control and FilterBuilder control.

    Steps,
    1) Create filter using FilterBuilder.
    2) Click Apply which will save filter object as it is. (i mean I am not encoding anything.)
    3) Navigate too another page thru menu.
    4) Menu will load another page with list grid.
    5) Click + button which will fire myGridName.startEditingNew({});

    Now, new added row display dropdown but does not display list. I checked that it is not disabled.

    Now if I clear my cache and load page again, And click + button which will fire myGridName.startEditingNew({});
    New added row will display dropdown, and on dropdown ARROW click load lists.

    This problem only occures when I set FilterBuilder criteria first.

    and viceversa

    If I add myGridName.startEditingNew({}), and access dropdown, set value, editComplete: function (rowNum, colNum, newValues) { SAVE DATA}
    and then Navigate to another page and access FilterBuilder. This time filterbuilder dropdown freeze, It display dropdown but on dropdown ARROW click does not load lists..

    Please help me.
    Thank you.

    #2
    I found solutions.

    My all smartclient objects are autoDraw : false. I draw them explicitly. But now I clear them and then draw again, which resolve problem.

    Each smartclient need to be cleared before drawing them.;)

    Comment


      #3
      That's definitely not necessary in general (no one should take this advice).

      You may have found some obscure framework bug, or you may just have a bug in your application code. Either way, in order for other people to look into it, we need a test case showing the issue, not a prose description. Take a look at the FAQ for a complete list of what you need to post.

      Comment

      Working...
      X