jQWidgets Forums
Forum Replies Created
-
Author
-
April 30, 2018 at 5:27 am in reply to: On EnterKey Grid Cell should be in EditMode… On EnterKey Grid Cell should be in EditMode… #99961
Hi Antonio,
Please try the following, updated, solution: https://jseditor.io/?key=jqxgrid-edit-on-enter-key. We hope it helps.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/March 9, 2018 at 5:49 am in reply to: FileUpload widget background FileUpload widget background #99111Hello Norman Bearon,
Here is an example that shows how to set the background color with CSS only: http://jsfiddle.net/Dimitar_jQWidgets/n6tckLbd/.
And here is how to do so with jQuery:
$('#jqxFileUpload').css('background-color', 'gray');
For more information, please review the jqxFileUpload Styling and Appearance help topic.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/February 23, 2018 at 5:54 am in reply to: Change Header Name in Export to Excel Change Header Name in Export to Excel #98889Hi lebarillier,
Please try the following solution:
var originalHeaderText = $('#jqxgrid').jqxGrid('getcolumnproperty', 'firstname', 'text'); $('#jqxgrid').jqxGrid('setcolumnproperty', 'firstname', 'text', "New header text"); $("#jqxgrid").jqxGrid('exportdata', 'json', 'jqxGrid'); $('#jqxgrid').jqxGrid('setcolumnproperty', 'firstname', 'text', originalHeaderText);
We hope it is helpful to you.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/February 9, 2018 at 5:44 am in reply to: Uncaught SecurityError: Blocked a frame with origin Uncaught SecurityError: Blocked a frame with origin #98639Hello CaptainBli,
The error is the same as explained in the aforementioned Stack Overflow topic. We are not sure why it is triggered by calling a jQWidgets-related code, but if you wish, you can share the relevant parts of your source code so that we can review them and provide feedback. However, we recommend addressing the actual reason for the error to be thrown – having iframes with different protocols.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi Bo,
Unfortunately, this issue has still not been resolved. We are sorry for the inconvenience.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/December 21, 2017 at 6:11 am in reply to: Need key down Event in Grid Need key down Event in Grid #97997Hello cbr00t,
Thank you for your contribution.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/December 20, 2017 at 7:20 am in reply to: Reorder grid rows with drag and drop Reorder grid rows with drag and drop #97980Hi Dinesh,
As already mentioned, there are no plans for introducing row reorder, unfortunately.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/December 19, 2017 at 6:28 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 #97957Hello AleksandarT,
jqxFileUpload uses an iframe internally in order to achieve seamless file upload without page reload. Here is a help topic that might help you resolve the issue: https://stackoverflow.com/questions/28647136/how-to-disable-x-frame-options-response-header-in-spring-security.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/December 11, 2017 at 6:20 am in reply to: Aggregation not working with Cellsrenderer in jqxGrid Aggregation not working with Cellsrenderer in jqxGrid #97842Hello bach,
Thank you for the contribution. Please note, however, that there are cases in which this solution may be unreliable: for example, if the first grid has a vertical scrollbar or paging enabled, the
$(".totalme")
selector will get only the visible cells and this may result in an incorrect calculation.Please consider the alternative solution using beforeLoadComplete which should be faster than the one with setcellvalue: https://www.jqwidgets.com/community/topic/computed-column-that-will-sort-and-use-the-cellclass/#post-88557.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/November 27, 2017 at 6:07 am in reply to: Tooltip for aggregate Row Tooltip for aggregate Row #97552Hi Chris,
Please try this updated solution: http://jsfiddle.net/Dimitar_jQWidgets/8jc05p4h/1/. We hope it is helpful to you.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/November 15, 2017 at 6:01 am in reply to: Add javascript code after created Add javascript code after created #97327Hi veenahosur,
This topic has been inactive for more than five years. Please specify in detail what your requirement regarding aggregates is and we will try to assist you or offer advice.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hello Sathia,
The name of the file is jqx-all.js. If you download it via npm or from the Non-Commercial or Evaluation Use download package, it will be minified. The file is also available at this link: https://jqwidgets.com/public/jqwidgets/jqx-all.js.
To download v5.1.0 specifically, please run the command
npm i jqwidgets-framework@5.1.0
. When the package is installed, jqx-all.js can be found undernode_modules\jqwidgets-framework\jqwidgets
.Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hello emberq,
If the scripts and your html files are both hosted on the same server (domain), you can use relative paths when referencing the files. This is actually done in our demos, because both the demo .htm files and the jQWidgets scripts are hosted on the same server (domain).
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hello emberq,
If you are using Node.js and deploy your application to npm, we suggest you describe the version of jQWidgets your product depends on in the file package.json. For more information, please refer to this page: https://docs.npmjs.com/files/package.json#dependencies. Then, when installing your application’s npm package, jQWidgets will also be downloaded in the
node_modules
folder locally. No matter what version of jQWidgets you wish to be downloaded, scripts do not have version suffixes, i.e.: jqxcore.js, jqxgrid.js, etc.Please also note that jQWidgets files available through npm are minified.
You may also be interested in our new npm release, jqwidgets-scripts which is a lightweight version of jqwidgets-framework that contains only the jQWidgets scripts and styles.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/November 1, 2017 at 6:05 am in reply to: jqxDockingLayout add remove documentPanel jqxDockingLayout add remove documentPanel #97035Hello dadiduekappa,
Unfortunately, neither of these options are available. All available group and panel settings are listed under the layout entry of the jqxDockingLayout API documentation.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts