EasyUI Forum
March 28, 2024, 04:37:48 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / Bug Report / Re: broken archive jquery-easyui-1.9.12.zip on: January 26, 2021, 09:04:46 AM
thanks. everything is fine now.
2  General Category / Bug Report / broken archive jquery-easyui-1.9.12.zip on: January 26, 2021, 02:28:49 AM
archive seems broken https://www.jeasyui.com/download/downloads/jquery-easyui-1.9.12.zip
3  General Category / Bug Report / Excel export formatter on: October 28, 2019, 05:12:58 AM
Excel export is not format data as defined formatter.
My fix:
Code:
            const columns = $node.datagrid('options').columns[0];
            const rows = $node.datagrid('getRows');
            rows.map(row => {
                columns.forEach(column => {
                    if (column.formatter) {
                        row[column.field] = column.formatter(row[column.field]);
                    }
                });
                return row;
            });

            $node.datagrid('toExcel', {
                filename: $node.datagrid('options').title + '-' + filter + '.xls',
                rows: rows,
            });
4  General Category / News / Re: jQuery EasyUI 1.7.0 Release on: December 26, 2018, 03:00:52 AM
thanks!
5  General Category / Bug Report / Re: horizontal scroll in grid on: October 23, 2018, 12:43:53 AM
fixed in version 1.6.7
need only call resize in onExpand method
6  General Category / Bug Report / 404 for extensions on: October 10, 2018, 11:37:13 PM
https://www.jeasyui.com/extension/index.php
any downloads return 404 error
7  General Category / Bug Report / Re: horizontal scroll in grid on: October 10, 2018, 11:32:58 PM
Thank you!
Are you planning to add these fixes to the main branch? At least "$.parser.parseValue"?
8  General Category / Bug Report / Re: horizontal scroll in grid on: October 10, 2018, 02:59:48 AM
Thank you, this fixes the problem in part.
Now watch what happens if you specify 'collapsed: true` (no group titles and have horizontal scroll on expand).

http://code.reloado.com/aqekiq3/8/edit#preview

9  General Category / Bug Report / Re: horizontal scroll in grid on: October 09, 2018, 12:17:11 AM
Thanks for reply!
Here's a slightly tweaked example with the problem: http://code.reloado.com/aqekiq3/6/edit#preview
---
The bottom line is I need to display a lot of tables. With automatic height.
10  General Category / Bug Report / horizontal scroll in grid on: October 08, 2018, 08:12:23 AM
If make DataGrid with parameters "width:100%;height:auto", we get a horizontal scroll.
Simple video: http://recordit.co/Ctw0dzNEud
11  General Category / General Discussion / Re: Source code to github on: August 08, 2017, 01:00:03 AM
found source https://github.com/waylau/jquery-easyui
12  General Category / Bug Report / Improve DataGrid View extension for webpack on: August 07, 2017, 03:09:58 AM
Need to change the scope of variables in module DataGrid View.
For example, "datagrid-bufferview.js", code:
Code:
var bufferview = $.extend({}, $.fn.datagrid.defaults.view, {
But in webpack, "var" - is local variable.
Change
Code:
var bufferview
to
Code:
window.bufferview
allow use this extension in webpack.
13  General Category / General Discussion / Source code to github on: July 21, 2017, 12:15:19 AM
Whether or not the team plans to publish the source code on github?
It would give impetus to the development of the project.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!