jQWidgets Forums
Forum Replies Created
-
Author
-
May 20, 2022 at 5:20 pm in reply to: Ajax monitoring for DataAdapter Ajax monitoring for DataAdapter #121737
Hello rmichel,
I would suggest you read our jqxDataAdapter Tutorial.
You can check if some of the following callbacks of the data adapter is useful for you needs:
beforeSend(jqXHR, settings): A pre-request callback function that can be used to modify the jqXHR
loadError(jqXHR, status, error): A callback function called when the request has failed.
downloadComplete(edata, textStatus, jqXHR): A callback function which is called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the dataType parameter; a string describing the status; and the jqXHR.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 20, 2022 at 11:32 am in reply to: scrollbars does not shown on jqxGrid scrollbars does not shown on jqxGrid #121736Hello nove,
You have set the autoheight property of the jqxGrid to “true” so the height of the grid is equal to the summary height of the grid rows.
If you remove it the grid will have fixed height and the scrollbars will appear if needed.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 20, 2022 at 11:24 am in reply to: change JqxGrid GridProps on click change JqxGrid GridProps on click #121735Hello Corith,
Thank you for the update!
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 11, 2022 at 11:20 am in reply to: Grid Aggregate Row Cuts off Final Data Row Grid Aggregate Row Cuts off Final Data Row #121707Hello stobon,
I have tested this Example using the code that you have sent and it is working fine.
All rows are visible.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 9, 2022 at 12:41 pm in reply to: Grid Events in CardView Mode Grid Events in CardView Mode #121697Hello njenga,
You can put different classes to the images and then check if the clicked image has the corresponding class.
Here is an updated Example again.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 9, 2022 at 12:29 pm in reply to: Auto-Resize height of nested grid Auto-Resize height of nested grid #121696Hello Chris,
Thank you for your contribution!
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 5, 2022 at 10:49 am in reply to: Multiple kanbans – 'AddItem' not working Multiple kanbans – 'AddItem' not working #121684Hello Bruno,
Yes, the work item is still valid.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 5, 2022 at 10:47 am in reply to: Using localization breaks filtering Using localization breaks filtering #121683Hello Lerogen,
Unfortunately, that is the way for localizing jqxGrid strings.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 4, 2022 at 12:25 pm in reply to: Using localization breaks filtering Using localization breaks filtering #121678Hello Lerogen,
Thank you for the feedback!
I have created a work item for this case.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 3, 2022 at 6:17 pm in reply to: Is it possible to dynamically position jqxchart range selector? Is it possible to dynamically position jqxchart range selector? #121674Hello jmshim,
Please, check if this Topic gives a solution for your case.
You can also check the following Example.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 3, 2022 at 6:03 pm in reply to: Using localization breaks filtering Using localization breaks filtering #121673Hello Lerogen,
Unfortunately, it seems that the link that you have sent is not made public.
Please, update it to public or send us a jsFiddle example.
Thank you!Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comMay 3, 2022 at 5:58 pm in reply to: Grid Events in CardView Mode Grid Events in CardView Mode #121672Hello njenga,
I have updated the Example so it shows the index of the clicked card.
Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comApril 28, 2022 at 11:49 am in reply to: Jqxgrid sets millions of "initWidgets" and produces memory leak. Jqxgrid sets millions of "initWidgets" and produces memory leak. #121657Hello javinavarrete63,
Unfortunately, there is no such option.
initwidget is a callback function and does not create memory leak. Memory leak may happen if your logic inside initwidget does something which occupies memory and does not destroy it. For example: bind to event. As initwidget is called each time the widget is in the view, you will end up with many event listeners while you need only 1. If possible, you can try moving yourinitwidget
callback functionality into thecreatewidget
callback that is called only once.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comApril 26, 2022 at 3:00 pm in reply to: Grid Events in CardView Mode Grid Events in CardView Mode #121655Hello njenga,
You can put classes on the images and then check for the class of the target element when a card is clicked to see if the event is triggered from an image.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.comHello javinavarrete63,
Yes, it is possible. You can achieve it by setting the
groupsheaderstring
property if the jqxGridlocalization
object.
Here is an Example.Best Regards,
Martin YotovjQWidgets team
https://www.jqwidgets.com -
AuthorPosts