EasyUI Forum
December 10, 2025, 01:49:59 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 ... 3 4 [5] 6
61  General Category / EasyUI for Vue / quick click datagrid cell throw an exception on: August 01, 2018, 10:29:27 PM
官网的例子,或者 源码安装后都有这个问题。
DomHelper.js?be6b:60 Uncaught TypeError: Cannot read property 'matches' of null
    at DomHelper.closest (DomHelper.js?be6b:60)
    at VueComponent.onCellDblClick (DataGridTable.js?f9cd:154)
    at dblclick (eval at createFunction (vue.esm.js:NaN), <anonymous>:3:2203)
    at invoker (vue.esm.js?a026:2027)
    at HTMLTableCellElement.fn._withTask.fn._withTask (vue.esm.js?a026:1826)
62  General Category / EasyUI for Vue / Re: how to use @vue/cli 3 initialize easyui on: August 01, 2018, 08:36:45 AM
vx-easyui source code compile failed.
Code:
Module Warning (from ./node_modules/eslint-loader/index.js):
error: '$event' is defined but never used (no-unused-vars) at src/easyui/src/components/calendar/Calendar.js:184:25:
  182 |     },
  183 |     methods: {
> 184 |         onDayClick(day, $event){
      |                         ^
  185 |             //event.stopPropagation();
  186 |             if (this.isValid(day)){
  187 |                 this.yearState = day[0];


error: '$event' is defined but never used (no-unused-vars) at src/easyui/src/components/calendar/Calendar.js:192:33:
  190 |             }
  191 |         },
> 192 |         onMonthClick(monthName, $event){
      |                                 ^
  193 |             event.stopPropagation();
  194 |             let index = this.months.indexOf(monthName);
  195 |             if (index >= 0){


2 errors found.

Module Warning (from ./node_modules/eslint-loader/index.js):
error: 'DomHelper' is defined but never used (no-unused-vars) at src/easyui/src/components/datagrid/DataGridBody.js:13:10:
  11 | import GridBody from '../gridbase/GridBody';
  12 | import DataGridTable from './DataGridTable';
> 13 | import { DomHelper } from '../base/DomHelper';
     |          ^
  14 |
  15 | export const DATAGRIDBODY_TEMPLATE = `
  16 | <div ref="bodyRef" class="datagrid-body f-full" style="margin-top:0"
63  General Category / EasyUI for Vue / Re: where is easyui Documentation for vue on: July 31, 2018, 04:14:25 AM
别急~估计文档在写,我先买个源码,再看demo学习学习。
64  General Category / EasyUI for Vue / how to use @vue/cli 3 initialize easyui on: July 31, 2018, 02:48:45 AM
how to use @vue/cli 3 initialize easyui
65  General Category / General Discussion / Re: Is there a plan to support VUE on: July 01, 2018, 12:42:58 AM
Great, what is the progress now?
66  General Category / General Discussion / Is there a plan to support VUE on: June 30, 2018, 09:20:53 AM
Is there a plan to support VUE
67  General Category / EasyUI for Angular / dialog component how to use maximizable on: June 26, 2018, 10:44:23 PM
dialog component how to use maximizable、collapsible、minimizable
68  General Category / EasyUI for Angular / need PropertyGrid component on: June 21, 2018, 07:24:29 PM
need PropertyGrid component
69  General Category / General Discussion / suggest add cascader components on: May 26, 2018, 11:23:03 PM
Dear Administrators,
suggest add cascader plugins.
cascader is better than combotree
example: https://www.iviewui.com/components/cascader-en
70  General Category / EasyUI for Angular / MessagerService component cannot be used on: May 06, 2018, 01:32:56 AM
<eui-messager> </ eui-messager> is not used in the template MessagerService component cannot be used
Code:
import { Component } from '@angular/core';
import { MessagerService } from 'easyui/messager/messager.service';
 
@Component({
    selector: 'app-root',
    template: `
        <h2>Alert Messager</h2>
        <eui-linkbutton (click)="alert1()">Alert</eui-linkbutton>
        <eui-linkbutton (click)="alert2()">Error</eui-linkbutton>
        <eui-linkbutton (click)="alert3()">Info</eui-linkbutton>
        <eui-linkbutton (click)="alert4()">Question</eui-linkbutton>
        <eui-linkbutton (click)="alert5()">Warning</eui-linkbutton>
        
    `
})
export class AppComponent {
    constructor(public messagerService: MessagerService) {}
 
    alert1() {
        this.messagerService.alert({
            title: 'Alert',
            msg: 'Here is a message!'
        });
    }
    alert2() {
        this.messagerService.alert({
            title: 'Error',
            icon: 'error',
            msg: 'Here is an error message!'
        });
    }
    alert3() {
        this.messagerService.alert({
            title: 'Info',
            icon: 'info',
            msg: 'Here is a info message!'
        });
    }
    alert4() {
        this.messagerService.alert({
            title: 'Question',
            icon: 'question',
            msg: 'Here is a question message!'
        });
    }
    alert5() {
        this.messagerService.alert({
            title: 'Warning',
            icon: 'warning',
            msg: 'Here is a warning message!'
        });
    }
 
}

Suggest MessagerService like easyui for jquery messager components.
Don't insert <eui-messager> </ eui-messager> node
71  General Category / EasyUI for Angular / MessagerService add euiDraggable tag invalid on: May 05, 2018, 12:41:15 AM
Code:
import { Component } from '@angular/core';
import { MessagerService } from 'ng-easyui/components/messager/messager.service';
 
@Component({
    selector: 'app-root',
    template: `
        <h2>Alert Messager</h2>
        <eui-linkbutton (click)="alert1()">Alert</eui-linkbutton>
        <eui-linkbutton (click)="alert2()">Error</eui-linkbutton>
        <eui-linkbutton (click)="alert3()">Info</eui-linkbutton>
        <eui-linkbutton (click)="alert4()">Question</eui-linkbutton>
        <eui-linkbutton (click)="alert5()">Warning</eui-linkbutton>
        <eui-messager euiDraggable ></eui-messager>
    `
})
export class AppComponent {
    constructor(public messagerService: MessagerService) {}
 
    alert1() {
        this.messagerService.alert({
            title: 'Alert',
            msg: 'Here is a message!'
        });
    }
    alert2() {
        this.messagerService.alert({
            title: 'Error',
            icon: 'error',
            msg: 'Here is an error message!'
        });
    }
    alert3() {
        this.messagerService.alert({
            title: 'Info',
            icon: 'info',
            msg: 'Here is a info message!'
        });
    }
    alert4() {
        this.messagerService.alert({
            title: 'Question',
            icon: 'question',
            msg: 'Here is a question message!'
        });
    }
    alert5() {
        this.messagerService.alert({
            title: 'Warning',
            icon: 'warning',
            msg: 'Here is a warning message!'
        });
    }
 
}
72  General Category / EasyUI for Angular / Re: suggest add new new layout components on: April 30, 2018, 10:43:00 PM
3q
73  General Category / EasyUI for Angular / suggest add new new layout components on: April 29, 2018, 11:52:46 PM
like this
Code:
<eui-row>
  <eui-col span="24">24</eui-col>
</eui-row>
74  General Category / EasyUI for Angular / please add server side pagination demo for datagrid on: April 28, 2018, 11:37:42 AM
please add server side pagination demo for datagrid
75  General Category / EasyUI for Angular / Re: Please add fit layout options to TabsCompoent on: April 16, 2018, 07:39:28 PM
Please add fit layout options to TabsCompoent,so that we can set the size of tabs container to fit it's parent container.
哥们,有QQ吗?加下交流下。 easyui for angular国内没地方交流。
Pages: 1 ... 3 4 [5] 6
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!