Questions tagged [jqxtreegrid]

jqxTreeGrid is a lightweight jQuery widget which represents data in a tree-like structure.

jqxTreeGrid is a lightweight jQuery widget which represents data in a tree-like structure. The Tree Grid (popular also as Tree List) widget supports multi column display of hierarchical data, data paging, sorting and filtering, data editing, columns resizing, fixed columns, conditional formatting, aggregates and rows selection. It can read and display the data from your data sources like XML, JSON, Array, CSV or TSV. jqxTreeGrid has intuitive and easy to use APIs and works across devices and browsers.

http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtreegrid/index.htm

10 questions
6
votes
2 answers

How can I check checkboxes and disabled in jqxTreeGrid

I am trying to make some of checkboxes checked and disabled in jqxTreeGrid in below code: $("#treegrid_portfolio").jqxTreeGrid( { source: dataAdapter, pageable: true, pagerMode: 'advanced', …
Developer
  • 876
  • 5
  • 18
  • 44
3
votes
1 answer

jqxTreeGrid Disable selecting / deselecting of a row if I click a particular cell in that row

I am working on jqxTreeGrid. I have a row with four fields. Name, Org, Phone and Select Preference (This is a dropdown). Now when ever i click on a particular row / cell, it selects that row and i save the row data to a local array. My problem here…
Yameen
  • 585
  • 1
  • 6
  • 17
2
votes
1 answer

jqxTreeGrid rowClick and rowDoubleClick vs rowSelect

Why would the rowDoubleClick or rowClick event return a more robust object than the rowSelect? For example rowDoubleClick $('#tree01').on('rowDoubleClick', function (event){ var args = event.args; var row = args.row; var…
John Cappelletti
  • 79,615
  • 7
  • 44
  • 66
1
vote
0 answers

Error during loading: Uncaught ReferenceError: jqxBaseFramework is not defined

Error during loading: Uncaught ReferenceError: jqxBaseFramework is not defined in http://localhost:9876/_karma_webpack_/vendor.js line 125124 getting this error in jasmin unit testing switch (item) { case 'Add Privilage': selectedItem =…
1
vote
0 answers

Why does JqxTreeGrid not allow browser selection when selectionMode is singleRow?

In a jqxTreeGrid, I can set the enableBrowserSelection property to true to allow selection of (parts of) the text displayed in the cells. This is useful for copying the data to the clipboard. However, I noticed that this does not work when I set…
wkl
  • 1,896
  • 2
  • 15
  • 26
1
vote
0 answers

How to update data in jQWidgets jqxtreegrid on keydown in filter bar?

How to update jqxtreegrid when I am typing something in filter bar? Currently, it requires us to click on search icon or to hit enter.
Krunal
  • 79
  • 1
  • 9
1
vote
2 answers

Nested JSON iterate, Maximum call stack size exceeded

I have implemented a recursive function to iterate through a nested JSON. The issue I am facing is that it throws the error Maximum call stack exceeded The function that I implemented is as follows, function createTreeMap (treeCatalog){ var…
Hasitha Shan
  • 2,900
  • 6
  • 42
  • 83
0
votes
1 answer

tooltip in JQX grid

I have a jqx grid, i have already enabled the tooltips for all the columns in the grid. one of the column in the grid will have images . how can i show text value in the tooltips Please find the sample code columns: [ { …
Thirumani
  • 45
  • 1
  • 10
0
votes
0 answers

Strange Issue: Backbone model showing different value in one of the method

I am showing a Bootstrap Modal Dialog (UserPermission) on click of a Button, where in I am showing the jqxTreeGrid displaying the list of users. Each user has some permission settings. So I have the following resources to setup the Bootstrap Modal…
Yameen
  • 585
  • 1
  • 6
  • 17
0
votes
1 answer

JqWidgets treegrid issues wiring up dataAdapter object

I'm in the AngularJS environment, and trying to get a jqWidgets TreeGrid working. I have the dataAdapter all wired up with the Json formatted data, however the grid renders only one row. I also have a test treeGrid on the same page, and with sample…
bob.mazzo
  • 5,183
  • 23
  • 80
  • 149