jQWidgets Forums

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Issue with interactive Tables Issue with interactive Tables #27121

    Glen
    Member

    Wow .This is what exactly I was looking for.I tested and it works perfectly

    Dimitar , thanks a ton buddy :).

    in reply to: Issue with interactive Tables Issue with interactive Tables #27060

    Glen
    Member

    The real issue is , when I apply filter in first table…values corresponding to filtered out row should be shown in second table .

    Master-Details example was helpful in doing the same functionality while a row is selected.

    But my issue is I have to implement the same functionality when a column is filtered out.

    in reply to: Issue with interactive Tables Issue with interactive Tables #26979

    Glen
    Member

    Thanks for the response Dimitar .

    But my issue is how to get the filetred out values in an array .

    Using var filters = filterinfo[0].filter.getfilters(); , we can get value, condition, operator and type.

    But what i need is filtred out values. eg if localdata: {a,a,a,b,c,a} has following values and I have filtered the data using the criteria

    filter= a . So my grid\table will sho up all the filtered values (in our example {a,a,a,a}).

    So how to get this values in an array.

    For rowselect( $(“#jqxgrid”).on(‘rowselect’, function (event) {) ,

    , we can get the values like

    var cis = event.args.row. . Similarly After filtering out the grids , I need to retieved the filtered values like this in an array({a,a,a,a})).

    I’m really stuck up with issue.Any help will be appreciated

    in reply to: Issue with interactive Tables Issue with interactive Tables #26759

    Glen
    Member

    To get the column name of filtered record , we can use the below code

    var filterinfo = $(“#jqxgrid”).jqxGrid(‘getfilterinformation’);
    var eventData = “Triggered ‘filter’ event”;

    for (i = 0; i < filterinfo.length; i++) {

    var eventData = "Filter Column: " + filterinfo[i].filtercolumntext;
    alert(eventData)

    }

    But how to get filtered out values in an array.

    for eg : I have following values in an array {a,a,y,a,a,k,s}.
    I have filtered out all the ‘a’ s . How to get these filtered out values(in this case {a,a,a,a}) in an array ( var data=new Array();)

    Thamks in advace

    in reply to: Issue with interactive Tables Issue with interactive Tables #26740

    Glen
    Member

    Thanks a ton Dimitar . I was really stuck up with this issue. I could able to perform this functionality now.

    Is’t possible to do below functionality using jqwidgets ?.

    In the example you have provided.When i click on a row , corresponding related records will be shown in second table.

    Now my implimentation is..If i filter out some record in first table , corresponding related records should be showed in second table.Any pointers or clue on implimenting this functionality

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