jQWidgets Forums
Forum Replies Created
-
Author
-
January 25, 2022 at 3:31 pm in reply to: jqxgrid pagerrenderer code to recreate 'Go to page' and 'Show rows' type pager jqxgrid pagerrenderer code to recreate 'Go to page' and 'Show rows' type pager #121426
Hi rs@work,
I have created a jsfidlle to showcase how to have this functionality working properly.
Link to the jsfiddle: http://jsfiddle.net/kmuehpqg/2/
You can additionally modify it so that it reproduces any further issue so that we could be able to give you a solution for them.
Let me know if this works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 25, 2022 at 3:12 pm in reply to: How to align pager to left? How to align pager to left? #121424Hi rs@work,
Already answered here: https://www.jqwidgets.com/community/topic/how-to-left-align-the-default-paging/#post-121423
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 25, 2022 at 3:11 pm in reply to: how to LEFT ALIGN the DEFAULT paging how to LEFT ALIGN the DEFAULT paging #121423Hi rs@work,
Yes, this functionality is achievable quite easily using the following CSS code snippet.
#pagergrid > div{ display: table-cell; }
Let me know if this works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 24, 2022 at 3:43 pm in reply to: Keep the list sorted when page loads Keep the list sorted when page loads #121407Hi walker1234,
You can save the sort information the browsers local storage and then reuse it when the page is loaded in order to achieve the functionality that you need.
Quick code example:
var localStorage = window.localStorage; $("#grid").on("sort", function (event) { var sortinformation = event.args.sortinformation; localStorage.setItem('sortInfo', sortinformation); });
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 21, 2022 at 5:05 pm in reply to: Dropdown change events not firing with keyboard selection Dropdown change events not firing with keyboard selection #121394Hi princegaijar,
I would like to ask you to create a code example reproducing this scenario in order to be able to give you a solution about it.
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 21, 2022 at 4:54 pm in reply to: Adding widgets to a Kanban item template Adding widgets to a Kanban item template #121393Hi Philbaney,
The problem was that the selector was a class and that is why it binds the last value and applies it to all the jqxProgressBar’s.
The solution will be to create a custom id for the jqxProgressBAr and use it to set up the component.
I have further edited the previous code example so that it works correctly: http://jsfiddle.net/c0328vjp/
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 20, 2022 at 3:35 pm in reply to: args.newColumn not set when using itemMoved with multiple connected Kanbans args.newColumn not set when using itemMoved with multiple connected Kanbans #121388Hi bcm,
Thank you for reporting this behavior!
I have created a work item for this use case and we will to fix it as soon as we are able to.
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 20, 2022 at 1:54 pm in reply to: Adding widgets to a Kanban item template Adding widgets to a Kanban item template #121386Hi Phillbaney,
I have created a complete code example showcasing how you can add a jqxProgressBar into your jqxKanban.
For your convenience I have created a complete jsfiddle showcasing this: http://jsfiddle.net/yzethonx/3/
Let me know if this works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comJanuary 10, 2022 at 4:46 pm in reply to: How to show labels in jqxknob How to show labels in jqxknob #121350Hi dopoto,
Yes, this functionality is possible using the following code snippets.
In the ngAfterViewInit method
ngAfterViewInit() { let circleKnob = document.querySelectorAll("circle[r='10']"), firstValueHolder = document.createElement('div'), secondValueHolder = document.createElement('div'), knobValue = $('#knob').val(); document.body.append(firstValueHolder); document.body.append(secondValueHolder); firstValueHolder.innerText = knobValue[0]; secondValueHolder.innerText= knobValue[1]; firstValueHolder.style.color = 'red'; secondValueHolder.style.color = 'red'; firstValueHolder.style.position = 'absolute'; firstValueHolder.style.top = circleKnob[0].getBoundingClientRect().top + 20 + 'px'; firstValueHolder.style.left = circleKnob[0].getBoundingClientRect().left + 'px'; secondValueHolder.style.position = 'absolute'; secondValueHolder.style.top = circleKnob[1].getBoundingClientRect().top + 20 + 'px'; secondValueHolder.style.left = circleKnob[1].getBoundingClientRect().left + 'px'; }
And in the onChange event handler:
myKnobOnChange(event: any): void { let circleKnob = document.querySelectorAll("circle[r='10']") firstValueHolder.style.top = circleKnob[0].getBoundingClientRect().top + 20 + 'px'; firstValueHolder.style.left = circleKnob[0].getBoundingClientRect().left + 'px'; secondValueHolder.style.top = circleKnob[1].getBoundingClientRect().top + 20 + 'px'; secondValueHolder.style.left = circleKnob[1].getBoundingClientRect().left + 'px'; firstValueHolder.innerText = event.args.value[0]; secondValueHolder.innerText= event.args.value[1]; this.myLog.nativeElement.innerHTML = 'Values: ' + event.args.value; };
Also a complete jsfidlle for this scenario: http://jsfiddle.net/7xqt8091/
Let me know if that works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comDecember 7, 2021 at 3:10 pm in reply to: Efficient search mechanism Efficient search mechanism #121180Hi walker1234,
I could suggest using custom sorting or filtering if that may suit your needs and for this we have demos showcasing this functionality.
Custom sorting demo: https://www.jqwidgets.com/react/react-grid/react-grid-customsorting.htm?material
Custom filtering demo: https://www.jqwidgets.com/react/react-grid/react-grid-customfiltermenu.htm?material
If those suggestions doesn’t suit you it will be best to share a bit more context/info about your use case.
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comDecember 2, 2021 at 4:39 pm in reply to: Bug in jqxTabs when setting the tab title Bug in jqxTabs when setting the tab title #121161Hi ajcs,
I confirm the reported behavior from and this is definitely a bug and I will add a work item for this use case.
Also I would like to thank for reporting this issue as it helps us improve our products constantly!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comHi antonomase,
Yes, this functionality is achievable with jqxGrid component and we have documentation and demos for it.
Link to the documentation: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-sorting.htm
Link to the demo: https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/customsorting.htm?ui-startLet me know what you think!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comHi qx5,
Can you share a bit more context of your use case as I was unable to reproduce an issue when pinning a column in the jqxGrid with filtered data.
I have create a jsfiddle to showcase you the functionality on my side: http://jsfiddle.net/ghrd908b/6/
You can modify it so that it reproduces your issue so that we could be able to give you a viable solution for it.
Let me know what you think!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.comNovember 12, 2021 at 5:57 pm in reply to: jqxWindow and jqxGrid don't like each other ? jqxWindow and jqxGrid don't like each other ? #121067Hi antonomase,
I would like to ask you which version of jQWidgets you are using, because with the latest version everything works as intended.
Also I strongly recommend you to update to the latest version of jQWidgets.
Please, do not hesitate to contact us if you have any additional questions.
Best regards,
Yavor Dashev
jQWidgets TeamNovember 12, 2021 at 5:25 pm in reply to: Checkbox not rendering upon entering row edit Checkbox not rendering upon entering row edit #121065Hi BakerRang,
I can confirm that this behavior is not expected in the jqxGrid and I will add a work item for this scenario.
I would like to thank you for reporting this issue as this helps us improve our products constantly.
Please, do not hesitate to contact us if you have any additional questions.
Best regards,
Yavor Dashev
jQWidgets Team -
AuthorPosts