jQWidgets Forums
Forum Replies Created
-
Author
-
August 24, 2017 at 5:01 am in reply to: How to get filtering url with data? How to get filtering url with data? #95620
Hello cstff,
The method getfilterinformation returns information about the applied filters. You can read more about it in the jqxGrid API documentation.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 24, 2017 at 4:49 am in reply to: how to dynamically create documentGroup with jqxlayout? how to dynamically create documentGroup with jqxlayout? #95619Hello softboy99,
The elements used for tabbedGroups and documentGroups are actually jqxRibbons. However, it is not recommended to call methods of these ribbons directly, because this will not properly update the layout object/property of jqxLayout and will most probably lead to unexpected behaviour. We are sorry for lacking the functionality you need.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 23, 2017 at 5:43 am in reply to: how to dynamically create documentGroup with jqxlayout? how to dynamically create documentGroup with jqxlayout? #95590Hello softboy99,
Unfortunately, such functionality is not available in jqxLayout. If you are using jqxDockingLayout, however, you can call the method addFloatGroup in order to add a floatGroup which can then be docked inside a documentGroup using the mouse.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi Manowar,
Please share more information on the issue:
- Are there any errors thrown in your browser’s console?
- Did you manage to implement addrow without the unnecessary call to updatebounddata in success?
- Please share if the cell enters edit mode at all. You can subscribe to the cellbeginedit event in order to determine this.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi Manowar,
Please share if any errors are thrown in your browser’s console while running the steps to reproduce this issue. Please also try calling begincelledit (in addrow) in a setTimeout and share the result, e.g.:
success: function(data, status, xhr) { rowdata.IncDocDetailID = data.IncDocDetailID; commit(true); $("#jqxgrid").jqxGrid("updatebounddata", "data"); $('#jqxgrid').jqxGrid('selectrow', $('#jqxgrid').jqxGrid('getrowboundindexbyid', data.IncDocDetailID)); $('#jqxgrid').jqxGrid('focus'); setTimeout(function() { $("#jqxgrid").jqxGrid('begincelledit', $('#jqxgrid').jqxGrid('getrowboundindexbyid', data.IncDocDetailID), "DetailNumber"); }, 10); },
Please also note that calling updatebounddata after
commit(true);
should not be necessary.Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 7, 2017 at 4:58 am in reply to: jqxFileUpload with Jersey backend jqxFileUpload with Jersey backend #95340Hi Blake,
Unfortunately, our team is not familiar with Jersey and cannot provide you with such an example. Please note, however, that jqxFileUpload is basically a wrapped standard
<input type="file">
and the back end implementation when using either of these should be the same. If you manage to implement it, we can help you convert your use of<input type="file">
on the client side with that of jqxFileUpload.Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 4, 2017 at 4:50 am in reply to: widget is not compatible in ie 8 widget is not compatible in ie 8 #95308Hello marwan.alqassas,
As stated on the Documentation page, jQWidgets supports all major desktop and mobile web browsers – Edge, Internet Explorer 7.0+, Firefox 2.0+, Safari 3.0+, Opera 9.0+, Google Chrome, IE Mobile, Android, Opera Mini, Mobile Safari(IPhone, IPad).
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 24, 2017 at 5:43 am in reply to: Reset Range Selection programmatically Reset Range Selection programmatically #95079Hi oracleruiz,
Thank you for your feedback. We confirm this issue. Unfortunately, we cannot currently offer a workaround on the matter.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 21, 2017 at 5:41 am in reply to: how to hise error message displaying by "showvalidationpopup" how to hise error message displaying by "showvalidationpopup" #95035Hi Rana,
Unfortunately, no. The only available method on the matter is hidevalidationpopups.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 18, 2017 at 7:03 am in reply to: use jqxFileUpload with MVC Controller or API Controller ? use jqxFileUpload with MVC Controller or API Controller ? #94967Hi omkar,
You can upload images using jqxFileUpload. This widget has the same upload capability as the standard HTML input type=”file”. Unfortunately, we cannot provide you with solutions on image preview and saving to database, because these are not directly related to our widget, but to the general operation of uploading in HTML/JavaScript.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi selva,
Here is how you can achieve your requirement: http://jsfiddle.net/Dimitar_jQWidgets/76ece6cb/. Note the applied CSS and the use of
!important
.Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 7, 2017 at 11:05 am in reply to: enableBrowserBoundsDetection For Menu and Context Menu enableBrowserBoundsDetection For Menu and Context Menu #94763Hi Paul,
Unfortunately, jqxMenu browser bounds detection is currently not on our Roadmap. However, there is an existing workaround for your requirement that has been presented in the following forum topic: http://www.jqwidgets.com/community/topic/position-of-context-menu/. We hope this solution is helpful to you.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 3, 2017 at 5:09 am in reply to: Retrieving layout after it is saved using JSON.stringify(savedLayout) Retrieving layout after it is saved using JSON.stringify(savedLayout) #94644Hi Ojas Jakhi,
Saving the layout to and loading it from a database has been discussed in the following topics where possible solutions have been presented:
- http://www.jqwidgets.com/community/topic/modifying-jqxdockinglayout-content/
- http://www.jqwidgets.com/community/topic/problems-persisting-docking-layout/
Please refer to the comments in these topics and take a look at the examples provided there.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/June 22, 2017 at 5:16 am in reply to: jqxDockingLayout add remove documentPanel jqxDockingLayout add remove documentPanel #94472Hello Dirk,
- Here is a jqxDockingLayout example with allowClose set to false for all panel groups: https://www.jseditor.io/?key=jqxdockinglayout-allowclose. As a result, none of them can be closed. Please note that there is a difference in the behaviour of allowClose in jqxLayout and jqxDockingLayout. In jqxLayout, groups cannot be closed by default and allowClose has to be set explicitly to true while the opposite is correct for jqxDockingLayout. This has been documented in the widgets’ respective API documentations.
- unpinnedWidth sets what the width of an autoHideGroup will be after it is unpinned. In above example, the autoHideGroup with “Toolbox” and “Help” becomes 200 pixels wide after unpinning, because unpinnedWidth is set to 200.
If you experience any issues with these functionalities, please share them. Your feedback is welcome.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/June 22, 2017 at 4:51 am in reply to: radion button inside jqxgrid radion button inside jqxgrid #94471Hi Shamine Dsouza,
If you wish, you can share your current implementation (as a jsEditor or a JSFiddle example) so that we can test it and provide you with suggestions on how to solve your issue.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts