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
2 answers

Could not enter date manually using jqxDateTimeInput

We are using jqxWidgets as a part of UI in our project. To display the date we are jqxDateTimeInput widget. The problem here is we could not manually input the date without using calendar icon. But in the demo shown in jqxwidget website in the link…
prabu
  • 1,247
  • 7
  • 21
  • 33
1
vote
2 answers

JQX Grid server data response example

I'm trying to implement a jqxGrid, using sorting and paging on the server. I don't have access to the server itself. Taking an example from:…
sellarafaeli
  • 1,167
  • 2
  • 9
  • 24
1
vote
1 answer

Browser crashes when binding a foreign source datafield in jqx.dataAdapter

I'm trying to build a grid using jQWidgets (jqxGrid) with a column which displays values from a foreign data source, using jqx.dataAdapter, but the browser crashes when I try to call the dataBind() method. Here's my (browser crashing!)…
PressF12
  • 11
  • 2
0
votes
0 answers

JQX Multiselect Combobox Not picking up selected value after search

A user searches for a term, they are able to select multiple values from Jquery/Database source in the backend. Once they enter 2 characters, it searches for it in the database. I am encountering an issue after the user search for the first term,…
0
votes
1 answer

Add a radio button jqxwidget

I am using jqxgrid in my application.Here ,I want to have ‘radiobutton’ selection mode for selecting a particular row as we have ‘checkbox’ selection mode.We have ‘singleselect’ selection mode available for selecting one row at a time but I also…
0
votes
0 answers

The result value varies with original value after updating the ID

on ctrl+v to the jqxmasked Input field (330)535-0505, it should remove the non-integers value, but while assigning edited value to Id output varies.. here is the code which I tried $("#id").jqxMaskedInput({ height: 20, width: 115, theme:…
Rela
  • 1
  • 2
0
votes
0 answers

Stop the save button in dialog to close the dialog in Angular jqxScheduler

I'm using jqxScheduler Angular widget in my Angular 10 App, and I need to stop the save button in Edit-dialog to close the dialog until saving process completed successfully in the back-end (WebApi), otherwise keep the dialog open for the user. I…
Ahmed Mostafa
  • 419
  • 6
  • 16
0
votes
1 answer

How can I add vue-select to JqxScheduler's dialog?

You can customize the JqxScheduler's edit dialog by appending the existing containers in the editDialogCreate method like this: var titleSelector = $(`
Előadás
Alex Denor
  • 137
  • 3
  • 16
0
votes
1 answer

Overriding JQXWidget css style not working

I am using jqxDateTimeInput control from JQXWidget in html5 form. Using Angular 7 with JQuery version 3.1. I want to change the font of jqx input content, only for this component. I am not using any jqx theme. In my component css i tried adding the…
RDV
  • 957
  • 13
  • 28
0
votes
0 answers

Prevent dropdown form from closing

I am trying to build a form inside of a dropdown, one of the component is time range picker (using jqxwidjets library) - I dont want the drop down to close when user is interacting with the form. So, I have stopped the event propagation on the form…
user9969157
  • 75
  • 4
  • 14
0
votes
1 answer

Is there a way to dynamically change data source of JQwidget grid column as well as column names

I am trying to change a few of the columns based on a user selection, by dynamically removing some of the columns in the array. However upon repopulating the grid it seems that the existing columns are already there and I therefore receive an error…
Curious-programmer
  • 772
  • 3
  • 13
  • 31
0
votes
1 answer

JQX Notification Widget showing multiple messages

Currently I am using jqx notification widget where a click on a button below code executes. But the problem is it displays multiple messages when we click on a button. I want to restrict it to single notification when we click on that button. Once…
Kap
  • 1
0
votes
1 answer

Angular jqxSchedular source localData Can't bind from remote

I am trying to use jqxSchedular for my web app. Schedular couldn't bind from remote data. Here is my Angular component: export class CourseScheduleComponent implements OnInit { appointmentDataFields: any = { from: "start", to:…
tcetin
  • 979
  • 1
  • 21
  • 48
0
votes
1 answer

Rendering issue of jqx grid in Firefox and safari browser

jqx grid is working properly in the chrome and edge but has issue in firefox and safari, I think it is z-index issue but not sure why it works for chrome and edge browser, if someone has the idea what to do about this issue please suggest the…
Rutvik Joshi
  • 97
  • 3
  • 13
0
votes
0 answers

How to solve Uncaught TypeError: $.jqx.pivot is not a constructor error

Here is the code var source = { localdata: data, datatype: "array", datafields: [ { name: 'firstname', type: 'string' }, { name:…