jQWidgets Forums
Forum Replies Created
-
Author
-
August 19, 2013 at 10:18 am in reply to: Issue with interactive Tables Issue with interactive Tables #27121
Wow .This is what exactly I was looking for.I tested and it works perfectly
Dimitar , thanks a ton buddy :).
August 18, 2013 at 12:36 pm in reply to: Issue with interactive Tables Issue with interactive Tables #27060The 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.
August 16, 2013 at 2:31 pm in reply to: Issue with interactive Tables Issue with interactive Tables #26979Thanks 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
August 13, 2013 at 5:10 pm in reply to: Issue with interactive Tables Issue with interactive Tables #26759To 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
August 13, 2013 at 10:58 am in reply to: Issue with interactive Tables Issue with interactive Tables #26740Thanks 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
-
AuthorPosts