EasyUI Forum
April 20, 2024, 05:22:58 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 ... 6
1  General Category / EasyUI for Vue / ComboGrid not support Full keyboard operation。like ‘up’ ‘down’ ‘enter’ on: November 27, 2018, 10:24:19 PM
as title 。
2  General Category / EasyUI for Vue / Re: ComboGrid not support filter on: November 23, 2018, 02:37:14 AM
when combogrid property editable="true" , the input focus, grid do not auto open
3  General Category / EasyUI for Vue / ComboGrid not support filter on: November 23, 2018, 02:35:11 AM
like title
4  General Category / EasyUI for Vue / Re: treegrid add column row-number fail on: October 15, 2018, 02:16:45 AM
空了 把你不涉密的一些界面效果 贴出来 。让我等屁民瞻仰一下呗
5  General Category / EasyUI for Vue / Re: treegrid add column row-number fail on: October 11, 2018, 03:13:15 AM
你做的项目,使用vx-easyui 了?
6  General Category / EasyUI for Vue / Re: how to change language on: September 04, 2018, 12:37:08 AM
作者为什么知道你需要 zh_cn
7  General Category / EasyUI for Vue / when datagrid has groupField,the scope.rowIndex Starting from 1 on: August 10, 2018, 12:50:59 AM
like title。if not has groupField 。thie scope.rowIndex starting from 0
8  General Category / EasyUI for Vue / datagrid dblclickToEdit bug on: August 08, 2018, 07:28:04 PM
When I set dblclickToEdit to true, I double-click the edit for the first time. When you click on the second line, the edit is opened without double clicking.
9  General Category / EasyUI for Vue / Re: datagrid property rowHeight is not work! on: August 06, 2018, 02:53:22 AM
iI think this property should be allowed to be used alone. From a practical point of view
10  General Category / EasyUI for Vue / Re: TextBox inside a Dialog is not accessible on: August 06, 2018, 12:48:25 AM
it's bug
11  General Category / EasyUI for Vue / datagrid property rowHeight is not work! on: August 06, 2018, 12:32:38 AM
like title.
12  General Category / EasyUI for Vue / Re: where is easyui Documentation for vue on: August 03, 2018, 01:24:45 AM
别急~估计文档在写,我先买个源码,再看demo学习学习。
i can't understand .
13  General Category / EasyUI for Vue / where is easyui Documentation for vue on: July 31, 2018, 03:20:33 AM
like title
14  General Category / Bug Report / where is easyui Documentation for vue on: July 31, 2018, 03:19:30 AM
like tip
15  General Category / Bug Report / Out of bounds when the desktop window moves on: July 04, 2018, 02:06:54 AM
Code:
onMove: function(left,top){
var opt = $(this).window('options');
app.left = opt.left;
app.top = opt.top;
if (left < 0) {
$(this).window('move', {
left : 1
});
}
if (top < 0) {
$(this).window('move', {
top : 1
});
}
var width = parseInt($(this).parent().css('width'));
var height = parseInt($(this).parent().css('height'));
var parentWidth = $(window).width();
var parentHeight = $(window).height();


if (left > parentWidth - width) {
$(this).window('move', {
"left" : parentWidth - width
});
}
if (top > parentHeight - height) {
$(this).window('move', {
"top" : parentHeight - 45 - height
});
}
}
Pages: [1] 2 3 ... 6
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!