jQWidgets Forums
Forum Replies Created
-
Author
-
October 28, 2021 at 3:22 pm in reply to: How to tell if a tab is enabled? How to tell if a tab is enabled? #120998
Hi ajcs,
The following code will return true, if a given tab is enabled, and false, if it is disabled:
!document.querySelectorAll(".jqx-widget-header")[index_of_tab].classList.contains('jqx-fill-state-disabled')
You can have a look at the example here:
https://jsfiddle.net/3gusacL9/2/Please let me know if this fixes your issue!
If you have any other problems, do not hesitate to contact us again.
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comOctober 8, 2021 at 4:25 pm in reply to: JqxFileUpload Set Http headers JqxFileUpload Set Http headers #120914Hello piyushp,
Unfortunately, this functionality is not natively supported by the JqxFileUpload.
However the FileUpload component from our new Product Line, Smart UI, allows you to easily set the Headers of the file upload’s request.You can take a look at the setHeaders function here: https://www.htmlelements.com/docs/fileupload-api/#toc-setheaders_any
And here is an example:
<smart-file-upload set-headers='function(xhr, file){ xhr.setRequestHeader("Cache-Control", "no-cache"); }}'></smart-file-upload>
I hope this will help!
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comOctober 7, 2021 at 4:07 pm in reply to: Chart range column with multi data series Chart range column with multi data series #120907Hi lonwag,
Thank you for the provided explanation.
One way to align the columns with the lines is to set
columnSeriesOverlap
totrue
.
For showing custom tooltips, you can use thetoolTipFormatFunction
function.
Please see the example below:
https://jseditor.io/?key=58ba6ea5278711eca30b00224d6bfcd5Please let me know if this fixes your issue!
If you have any other problems, do not hesitate to contact us again.
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comOctober 6, 2021 at 3:19 pm in reply to: Jqx Grid selection checkbox disable Jqx Grid selection checkbox disable #120888Hi pranav.j,
Thank you for the additional information.
In this case, you can use our cellsrenderer to gray out the text on the disabled rows or apply any other css rule you wish.
Moreover, inside the .disabled-checkbox class you can style the disabled checkboxes.
Please have a look at the updated sandbox:
https://codesandbox.io/s/confident-moore-mi3vn?file=/src/App.vueLet me know if this fixes your issue!
If you face any other problems, please do not hesitate to contact us again.Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comOctober 4, 2021 at 4:21 pm in reply to: Jqx Grid selection checkbox disable Jqx Grid selection checkbox disable #120877Hi pranav.j,
Please have a look at the following link:
https://codesandbox.io/s/confident-moore-mi3vn?file=/src/App.vue
Let me know if this fixes your issue!
If you face any other problems, please do not hesitate to contact us again.Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.comOctober 1, 2021 at 12:32 pm in reply to: Is it possible to make responsive grid row height? Is it possible to make responsive grid row height? #120861Hello veerhunter,
Unfortunately, this functionality is not yet supported by the Angular Grid component, however please do not hesitate to contact us again if you encounter any other issues during your development process.
Best Regards,
Ivan Peevski
jQWidgets team
https://www.jqwidgets.com -
AuthorPosts