EasyUI Forum
May 02, 2024, 12:08:33 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3 ... 11
1  General Category / Bug Report / Re: combogrid special error after show and hide combo panel on: April 20, 2015, 11:39:50 PM
That works - THX
2  General Category / Bug Report / combogrid special error after show and hide combo panel on: April 20, 2015, 01:52:23 AM
I found a bug when using combogrid. I write an exsample to show the problem:

Exsample: http://jsfiddle.net/tf1639hp/3/
Screencast to see the problem: http://www.screencast.com/t/vVbrId8v3

Here the steps to reproduce the problem:
Please open the browser console to see the debug statements.

1. Open the combogrid editor of row 2 (Server 21)
2. Scroll the datagrid complete to the end of data (with scoll pane)
3. Scroll the datagrid to the first row (with scoll pane)
4. close the combo panel
5. open the combo panel egain
6. wait 2 seconds

Now you see that the comple datagrid data load again from the remote server.
And the combogrid data not correct (see attachment)!
If we have many rows in the datagrid the browser application hangs!






3  General Category / Bug Report / Re: easyui1.4 textbox ie bug on: April 20, 2015, 12:27:34 AM
It works - THX
4  General Category / Bug Report / Re: combogrid data url is triggerd 2 times on: April 20, 2015, 12:25:20 AM
THX, now it works  Smiley
5  General Category / Bug Report / combogrid data url is triggerd 2 times on: April 17, 2015, 05:47:03 AM
I found that the combogrid data url is triggerd 2 times to fetch remote data!
I test it, this is a bug in the patch file for version 1.4.2!
Without the patch file it is called only once.
6  General Category / EasyUI for jQuery / Re: combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 31, 2015, 11:36:36 PM
Great, that's exactly what we were looking for
The reason is, that we have 20.000 Server in the list and the user should see the page with the selected server!

But some notes: If the list is very long, the event 'onShowPanel' comes before the event 'onFetch'. So the rows object is not defined and an error occurs.

Bug: Also i see that the combogrid data url is triggerd 2 times to fetch the remote data! - I test it, this is a bug in the patch file for version 1.4.2! Without the patch file it is called only once.
7  General Category / EasyUI for jQuery / Re: combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 31, 2015, 04:32:28 AM
I think you do not understand me.

See this exsample: http://jsfiddle.net/poactohm/
Remember again: We use the "DataGrid VirtualScrollView" for the combogrid internal datagrid. See code:

Code:
 ...
 view:scrollview,
 pageSize: 5,
 ...

The setValue method only works without the scrollview!

* double click on the row with servername is "server 21"
* open the combogid to show the internal datagrid
* The Server "server 21" should direct visible on the datagrid, but it is not shown
* Now when you scoll down the 2, 3, and 4 view page is loaded and the server is shown on the page 5! (see the log statements on console)
* But I will open the page 5 with the selected Server when the combogrid panel is shown!!!

Code:
(index):84 onFetch page: 1
(index):88 onShowPanel ...
(index):84 onFetch page: 2
(index):84 onFetch page: 3
(index):84 onFetch page: 4
(index):84 onFetch page: 5
8  General Category / Bug Report / missing css class "textbox-text-readonly" in release 1.4.2 on: March 30, 2015, 05:49:57 AM
We using the css class "textbox-text-readonly" to have another color for readonly values.

In release 1.4.1 the was this class.
But in release 1.4.2 easyui removed this from elements - why?

How should I handle this now?
9  General Category / EasyUI for jQuery / Re: combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 29, 2015, 11:35:07 PM
OK. Thx for this exsample.

But remember i use the "DataGrid VirtualScrollView" for the combogrid internal datagrid.

How can I automaticly Scroll down to the page with the selected value, to show the selected item on the combogrid datagrid if the user open the combogrid panel?

See the example http://jsfiddle.net/m2q5sqmj/4/.
The Server "Server 21" is not shown first on the datagrid if the combo opens?
10  General Category / EasyUI for jQuery / Re: combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 27, 2015, 03:49:00 AM
Thx - now is the cobo value init when going in edit mode.

But my question was also: how to select the correct page whith the selcted server - in exsample "server 21"

"When double click on a row to go in the edit mode and oben the combogrid panel,
how can we select the combogrid value on the datagrid view if this is not on the first scrollview page?"

11  General Category / EasyUI for jQuery / Re: combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 27, 2015, 01:47:09 AM
Hi jarry, I try the exsample but it is not working. When going into edit mode the combogrid shows "[object Object]"
Nothing is select correct, and if the server on the second page also nothing is select on the second page.  Undecided
12  General Category / EasyUI for jQuery / datagrid with GroupView and VirtualView? on: March 26, 2015, 05:58:43 AM
We use a datagrid with pagination and DataGrid GroupView.
But there are many datatest (10.000) so my Question is:
It is possible to have a combination between DataGrid GroupView and DataGrid VirtualScrollView ?
13  General Category / EasyUI for jQuery / combogrid + scrollview in edatagrid - how to select values on combogrid datagrid on: March 25, 2015, 02:41:49 AM
We use a datagrid and a combogrid as editor for the servername.
The combogrid has a big data list, so we use the "Datagrid Scroll View" extension inside the combogrid.

When double click on a row to go in the edit mode and oben the combogrid panel,
how can we select the combogrid value on the datagrid view if this is not on the first scrollview page?

See my exsample for more information: http://jsfiddle.net/sbrandt/m2q5sqmj/
14  General Category / Bug Report / Re: combogrid loadFilter exception on: March 25, 2015, 01:08:56 AM
OK thanks.

Code:
     loadFilter: function(data){
          //filter data here ....

            return {
             total:data.length,
             rows:data
           }
     }

But i think this should be done internal by the combogrid
override the loadFilter method there?
15  General Category / EasyUI for jQuery / Re: Using combogrid in a datagrid cell on: March 24, 2015, 08:40:03 AM
OK. But it is not in the documentation of the datagrid page:
http://www.jeasyui.com/documentation/datagrid.php
Pages: [1] 2 3 ... 11
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!