Questions tagged [jqxwidgets]

jQWidgets is a widget library built on top of the jQuery JavaScript Library

jQWidgets is a widget library built on top of the jQuery JavaScript library. It empowers developers to deliver professional, cross-browser compatible web applications, while significantly minimizing their development time. jQWidgets contains more than 40 UI widgets.

Resources

143 questions
1
vote
1 answer

injecting chart.js sparkline to jqxGrid widget in Angular with typescript

I am attempting to display a sparkline from an array of data coming from an internal API call. the data comes as an array of numbers, and import { Chart, registerables } from 'chart.js'; Chart.register(...registerables); are imported. the columns…
deitz88
  • 33
  • 5
1
vote
0 answers

Uncaught TypeError: Cannot read property 'offsetWidth' of undefined when trying to change selected tab using jqxTabs

Js code : $('#observableTabs').jqxTabs({ width: 300, height: 170, position: 'top' }); $('#observableTabs').jqxTabs('select', 1); EditOrAddActionModal = "Add"; $("#AddPanel").jqxWindow("move", $(window).width() / 2 -…
1
vote
0 answers

On subscribe jqxInput should have all values to search (In Angular 8)

Hi I am using angular with jqxWidget. In that I am using jqxInput which should update/load source based on user input values and the source datatype is json. Here I am able to get the data from the service, but in the dropdown it doesn't show until…
RKD
  • 33
  • 1
  • 8
1
vote
1 answer

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…
user2384432
  • 51
  • 1
  • 1
  • 2
1
vote
1 answer

When i bind to a array, it doesnt seem to properly reflect to the markup ngif

I have an @Input which I assign a value in the parent component. I assign the value from an empty array to a array of size one. In this component though, it doesnt seem to properly reflect this changed array in the form of an NGIF. It is pretty…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
0 answers

How to server side filtering,pagination and sorting in jqx widget grid angular 7

I am developing an angular 7 project with dotnet core web api. I am using some feature of JQX widget.In jqx widget grid i need help to filter,paginate and sort data from server side.I have tried following code. ---grid.component.html--
Abdullah Al Noman
  • 301
  • 1
  • 3
  • 5
1
vote
1 answer

Is there a way to replace my component in dom with its contents?

I am currently using a 3rd party utility, called JQXDocking. Its a pretty simple and straight-forward design. Upon looking into it on a deeper level though I figured the page would get bulky so, i abstracted all of the docked widgets to custom…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
0 answers

Dynamicly adding/removing columns is giving me a Horizontal Scrollbar

When working with JqxGrid in an Angular format, I was creating a checkbox which would toggle additional column(s) to appear. I thought this would be a pretty simple thing, when the Grid is suppose to take up all available space. The issue I have…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
1 answer

In a markup page, how can i add something to textContent property of an html tag?

I noticed a XSS vuln I am working to resolve where the jqxGrid will render whatever the cell is. For example: Hello. So my thought was to find a way to resolve this. I am currently looping over the data for…
Fallenreaper
  • 10,222
  • 12
  • 66
  • 129
1
vote
1 answer

jqxTree scrolling to the top by collapse/expand nodes

When I collapse or expand a node in a jqxTree the scrollbar of the container element is going to the top. Is it possible to avoid this behaviour? The solution of setting a fix height to the widget is not good for me. I need dynamic height. It is…
dvjanm
  • 2,351
  • 1
  • 28
  • 42
1
vote
1 answer

How to parse jqwidgets (jqx) date with format?

Basically I have date format which comes from server and which will be not known before and a date that was already formatted in this format, e.g. the format is "dd/MM/yyyy" and the date is "21/01/2018" (two strings). The format that uses jqx…
Vladimir Mironov
  • 655
  • 1
  • 7
  • 23
1
vote
1 answer

npm jqwidgets-framework install & license

I have license of jqWidgets with some other account & earlier I have added required js & styles files by including downloaded folder in solution. It was working fine then. Now I wish to install jqwidgets-framework via npm but now I am getting…
Pranav Singh
  • 17,079
  • 30
  • 77
  • 104
1
vote
1 answer

javascript code not picking up code_description value for first record

I have something similar to the JSFiddle mentioned here. The JSFiddle works fine, however, I am seeing a strange behaviour in my code. The description of very first cell is always empty even though I am seeing that in the returned data (in JSON…
Dan
  • 443
  • 1
  • 7
  • 19
1
vote
0 answers

Prevent vertical lines border display while scrolling jqxgrid horizontally?

How to avoid displaying vertical border lines while scrolling jqxgrid horizontally..That is I found that till grid width it is displaying correctly. The above issue displaying after GROUPING done in jqxgrid
1
vote
0 answers

How to add a NumericUpDown In JqxGrid?

Does anyone can help me in how can I add a NumericUpDonw field in JqxGrid ? Here's my column: columns: [ { text: 'Ano', datafield: 'Ano', width: '4%', filter: fdata, cellsalign: 'center', columntype: 'number' }, ] So I…
1
2
3
9 10