user2384432
user2384432

Reputation: 51

Is there alternative available to jqx render capability - $gridContainer.jqxGrid('render')

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')

Upvotes: 1

Views: 92

Answers (1)

Ravi Makwana
Ravi Makwana

Reputation: 2918

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.
});

Upvotes: 0

Related Questions