jQWidgets Forums
Forum Replies Created
-
Author
-
January 14, 2019 at 11:43 am in reply to: jqxEditor inside of a jqxLayout jqxEditor inside of a jqxLayout #103503
Hi Franco01,
Unfortunately, this issue cannot be resolved due to the default behavior of iframes (as detailed in my previous comment). However, you can use a stand-alone jqxEditor (one that is not in jqxLayout/jqxDockingLayout) with 100% height.
Best regards,
DimitarjQWidgets team
http://www.jqwidgets.com/October 29, 2018 at 10:03 am in reply to: Grid row selection problem Grid row selection problem #102550Hello boydcyr,
Here is an example that shows how to have initially selected rows when selectionmode is ‘checkbox’: http://jsfiddle.net/Dimitar_jQWidgets/C3vQb/844/. We hope it is helpful to you.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 29, 2018 at 5:45 am in reply to: JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame #101736Hi Shweta,
Please also share the HTML code of your jqxFileUpload. Please note that it must not be placed inside a form element, because it is meant to be stand-alone.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 13, 2018 at 4:58 am in reply to: JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame #101491Hi Shweta,
Could you, please, share whether the issue occurs if the jqxFileUpload is outside the window? We also recommend updating to the latest version of jQWidgets (6.0.5), which has many improvements over 4.1.2 (released over two years ago).
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 10, 2018 at 5:01 am in reply to: JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame JqxFileUpload Problem – Refused to display ' in a frame because it set 'X-Frame #101475Hi Shweta,
This error seems to be thrown, because jqxFileUpload tries to upload an already uploaded file. Could you, please, share more details about this issue:
- What version of jQWidgets are you using?
- What browser does the issue occur in?
- Is (was) there a configuration (on your side) that did not cause the issue and are there other jqxFileUploads in your project that upload files as expected?
- Are you sure you have made a correct use of the fileInputName property? Here is its description from the API documentation: Sets or gets the name attribute of the hidden file input which is submitted to the URL specified by the uploadUrl property. This name is applied to the file input of the file about to be uploaded and after the upload the name attribute is removed so that it can be set to the next hidden file input (if any). As a result, there is only one file input with this name attribute at a time.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/August 6, 2018 at 5:21 am in reply to: jqxColorPicker and jqxDropDownButton in a jqxWindow jqxColorPicker and jqxDropDownButton in a jqxWindow #101371Hi N.I.Alam,
Could you, please, share if the issue exists with the latest version of jQWidgets (6.0.5)? Many bug fixes and improvements have been introduced since the release of the version you are using.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 27, 2018 at 8:12 am in reply to: jqxColorPicker and jqxDropDownButton in a jqxWindow jqxColorPicker and jqxDropDownButton in a jqxWindow #101265Hi N.I.Alam,
Please share more information:
- Does the JSFiddle example work properly on your side?
- What browser are you testing on?
- Are you using our jqxWindow or a third-party dialog widget?
We also recommend updating to the latest version of jQWidgets (6.0.4).
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/July 26, 2018 at 5:48 am in reply to: jqxColorPicker and jqxDropDownButton in a jqxWindow jqxColorPicker and jqxDropDownButton in a jqxWindow #101238Hi N.I.Alam,
We created an example based on above code that shows how to close the jqxDropDownButton when you click outside it: http://jsfiddle.net/Dimitar_jQWidgets/aykz3dxL/. We were not able to reproduce the error you specified. Could you, please, share more details about it?
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/June 25, 2018 at 4:56 am in reply to: unable to convert saveLayout method returned result to string unable to convert saveLayout method returned result to string #100692Hello Dirk,
As previously mentioned, the object returned by the method saveLayout cannot be stringified reliably. You can try the solutions of other users (modifying jqxdockinglayout content, Problems persisting docking layout), but there is no guarantee they would work in your scenario, and, unfortunately, there is no official solution on the matter.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/June 18, 2018 at 4:50 am in reply to: Change Label buttons and problem with browser button Change Label buttons and problem with browser button #100616Hello defyent,
Unfortunately, jqxFileUpload cannot be included in a form, because, as explained in my previous reply, it has internal form(s) that allow for uploading each file individually (if necessary). The widget’s uploadUrl property is analogous to the HTML form action attribute.
A possible workaround is to bind to the click event of your form’s submit button and call the jqxFileUpload uploadAll method in the click event handler. This way, for the user, it would seem that both the form and the stand-alone jqxFileUpload are submitted at the same time.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi Mohamed,
Thank you for your contribution.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/May 29, 2018 at 10:39 am in reply to: selected/dragEnd event doesn’t fire selected/dragEnd event doesn’t fire #100352Hi jonatas,
In jqxTabs, tab indexes are based on the position in the tab header. That is why when tabs are reordered, their indexes change. If you have the configuration (A|B|C), reorder them as (C|B|A) and then call
$('#jqxTabs').jqxTabs('removeAt', 2);
, item “A” will be removed, because its new index is 2.event.args.item
in the removed handler will return 2, butevent.args.title
will be “A”. This is the expected behaviour of jqxTabs and it cannot be altered.Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/May 23, 2018 at 8:07 am in reply to: DropDownList | Height Issue DropDownList | Height Issue #100305Hi N.I.Alam,
The following example shows how to achieve your requirement: https://jseditor.io/?key=jqxdropdownlist-autodropdownheight-max-height. We hope it is helpful to you.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/May 8, 2018 at 4:59 am in reply to: Drag a row from one grid to another Drag a row from one grid to another #100101Hello pandemonium,
Here is a live version of above example you can test online: https://jseditor.io/?key=jqxgrid-drag-row. It works as expected with the latest version of jQWidgets (5.7.2).
Please note that the columns array has to be defined before the initialization code of the first grid so that it can later be referenced in the dragStart event handler.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts