1

We are using jqxGrid library from jqwidgets. In this I am using jqxDropDownList for displaying list created from json data and upon selecting a value from dropdown filtering should happen.

We had some UI issues hence we had to remove below line, now I would like to know is there alternative available for below code :

code :

$gridContainer.jqxGrid('render')
Ravi Makwana
  • 2,782
  • 1
  • 29
  • 41
user2384432
  • 51
  • 1
  • 1
  • 2

1 Answers1

0

if you want to update two-way data then you should used observableArray()

here check the demo code jqx observable array

var observableArray = new $.jqx.observableArray(
[{name: "Andrew Smith"},
 {name: "Gordon Brown"}], 
function(changes)
{
    // handle changes here.
});
Ravi Makwana
  • 2,782
  • 1
  • 29
  • 41