EasyUI Forum
April 23, 2024, 05:26:30 PM *
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
1  General Category / Bug Report / Re: Newest version on Angular is not working on: February 07, 2019, 10:26:41 AM
stworthy,

Any update when this fix will be in the next release?

Swany
2  General Category / Bug Report / Re: Newest version on Angular is not working on: January 28, 2019, 07:57:25 AM
stworthy,

Thank you that fixed the error. Will this file be in the next release?

Swany
3  General Category / Bug Report / Newest version on Angular is not working on: January 27, 2019, 09:58:59 PM
Newest version on Angular is not working after the install is complete. I put the css files where the belong. Then import and add EasyUIModule to the app.module.ts file. fire it up with ng s and it compiles with this error:
ERROR in ./node_modules/ng-easyui/components/messager/messager.service.js
Module not found: Error: Can't resolve 'rxjs/Subject' in 'C:\Development\ArmgaSys\AngularFramework\node_modules\ng-easyui\components\messager


any help would be greatly appreciated

Thank you,
Swany
4  General Category / Bug Report / Angular - DataGridComponent selectRow method not working on: December 28, 2018, 11:49:42 AM
Please see topic for more information: https://www.jeasyui.com/forum/index.php?topic=7760.0

If I have a virtualScroll set to true for a DataGridComponent and call selectRow it does not work.

I have the idField value set and I bind the 'selection' to the datagrid.
I load a grid with data.
I scroll half way down the grid.
I edit the row by passing the row to a dialog.
I save the save data and call service to get the data and reload the grid.
The grid selects row but does not scroll to the selected row.
5  General Category / Bug Report / Re: Angular - DataGridComponent not scrolling with filter header. on: December 10, 2018, 05:00:52 PM
Thank Jarray it is working correctly now.
6  General Category / Bug Report / Angular - DataGridComponent not scrolling with filter header. on: December 04, 2018, 01:10:36 PM
Example: You have a grid with 5 or 6 columns. Each column is setup to filter. Your grids width is only wide enough to show 3 columns. You have the horizontal scroll bar at the bottom of the grid. You can slide it back and forth to see the other columns. Now click into the first column's filter. Now tab to the next column's filter. When you get the 3rd column and tab to the forth column's filter, the filter header scrolls to the forth column but the grid does not. It still shows the first 3 columns.
7  General Category / EasyUI for Angular / Re: DataGridComponent selectRow method not working with virtualScoll set to true on: December 04, 2018, 09:20:56 AM
stworthy thank you for your help. It is selecting the row now, but the grid does not scroll to that row.
8  General Category / EasyUI for Angular / Re: Can Tooltips be used with DataGrid? on: December 04, 2018, 09:14:30 AM
Works perfect thanks.
9  General Category / EasyUI for Angular / Can Tooltips be used with DataGrid? on: December 03, 2018, 01:52:50 PM
Can Tooltips be used with DataGrid?
10  General Category / EasyUI for Angular / Re: DataGridComponent selectRow method not working with virtualScoll set to true on: December 03, 2018, 01:50:43 PM
I have the idField set but it still does not work.

Code:
   <eui-datagrid #uiBeHoldsGrid [data]="data" style="height:calc(100vh - 290px); " [loading]="loading" loadMsg="Loading Please Wait"
            [filterable]="true" [sorts]="[{field:'createDateFormated',order:'desc'}]" [virtualScroll]="true"
            [pageNumber]="pageNumber" [pageSize]="pageSize" idField="id" selectionMode="row">


Code:
    LoadData() {
        this.data = [];
        this.loading = true;
        var zone = GqConfigService.timeZone;
        this.sblBeHoldsService.getData((msg) => {
            this.data = msg;
            this.loading = false;
            this.RowCount = this.uiBeHoldsGrid.rows.length;
            setTimeout(() => {
                if(!isNullOrUndefined(this.selectedRow)){
                    var selected = this.uiBeHoldsGrid.rows.find(x => x.id.trim() === this.selectedRow.id);
                    this.uiBeHoldsGrid.selectRow(selected);
                    this.selectedRow = null;
                }             
            }, 100);
            this.gqTabsService.ShowSpinner(false);
        },
            (status, statusText, error) => {
                console.log("Status: " + status);
                console.log("StatusText: " + statusText);
                console.log("Server Error: " + error);
                this.gqTabsService.ShowSpinner(false);
                this.loading = false;
                this.messager.ErrorAlert("Failed", "Failed to load data: " + error)
            },
            zone
        );
    };
11  General Category / EasyUI for Angular / DataGridComponent selectRow method not working with virtualScoll set to true on: November 30, 2018, 02:44:13 PM
If I have a virtualScroll set to true for a DataGridComponent and call selectRow it does not work.

I load a grid with data.
I scroll half way down the grid.
I edit the row by passing the row to a dialog. Before I open the dialog I assign the row to a public variable.
I save the save data and call service to get the data and reload the grid.
I now call selectRow by passing in the saved row variable.
The grid does not scroll to the selected row or even select that row.

If I am not using the method correctly please provide an example.
12  General Category / EasyUI for Angular / Re: TagBoxComponent - Using Reactive Forms Field not updating on: November 28, 2018, 08:38:43 AM
I figured it out. I needed to clear the array value in the FormControl first, before add the array back into the control.
Code:
        this.attachmentList = [];
        this.attachmentList = this.editData.get('attachmentList').value;
        this.attachmentList.push(title);
        this.editData.get('attachmentList').setValue([]);
        this.editData.get('attachmentList').setValue(this.attachmentList);   


 
13  General Category / EasyUI for Angular / TagBoxComponent - Using Reactive Forms Field not updating on: November 27, 2018, 05:47:55 PM
I have a dialog with a eui-tagbox, which currently has 2 tag in it. I am using Reactive Forms and when I update the value by adding another string to it with a button click. I am adding it to the array which is defined as the value for the FormControl. The tag does not appear in the field for the new value. I have verified the string value was add and is the FormControl value.
14  General Category / EasyUI for Angular / DateBoxComponent - selectionChange event not firing when Today button is clicked on: November 21, 2018, 12:48:12 PM
When you click on the Today button at the bottom of the calendar, the selectionChange event is not fired.
15  General Category / EasyUI for Angular / Re: ComboBoxComponent list move with scrollbar on: August 20, 2018, 10:54:10 AM
stworthy,

Tested and work correctly in version 1.1.15

Thanks
Pages: [1] 2 3
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!