EasyUI Forum
May 13, 2024, 01:11:22 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
1  General Category / EasyUI for jQuery / Re: Layout, larger bar for resizing. on: July 15, 2014, 01:21:51 PM
thank you.
2  General Category / EasyUI for jQuery / Re: Layout, larger bar for resizing. on: July 15, 2014, 12:20:48 AM
No, I want to increase the space where I can grab the border to resize the layout. Default is only 4-5px. You can increase it visual with this:

Code:
<style type="text/css">
  .layout-split-proxy-h { width: 24px; }
  .layout-split-proxy-v { height: 24px; }
</style>

But it is only visual and gives no better control on touchscreens.
3  General Category / EasyUI for jQuery / Layout, larger bar for resizing. on: July 13, 2014, 04:42:49 AM
Hello,

I tested some examples on touchscreen devices. Many things are hard to control. For example the basic layout demo: http://www.jeasyui.com/demo/main/index.php?plugin=Layout&theme=default&dir=ltr&pitem=

Is it possible to use a larger bar for changing the panel sizes?

greetings
4  General Category / EasyUI for jQuery / Can I hook into filterrows update event? on: December 19, 2013, 02:56:44 AM
I am using the filterrow extension with remote filters. I need some additional filter field in the toolbar. When the filterrow triggers an update, I need to send the additional filter values. How do this?

What I try first, is to use the "filterStringify" function to inject custom data but maybe there is some better way?
5  General Category / EasyUI for jQuery / Re: Combotree - turn checkboxes on with config? on: December 18, 2013, 07:22:57 AM
The problem is, that I use the datagrid-filterrow-extension and I don't know how to access the element (object?) that represent the comotree

I tryed this:

Code:

// this should give me the combotree?
var combotree = $('#dg').datagrid('getFilterComponent','ct-field');

// there is a tree() method listed under "__proto__" should it give back the tree-object?
var tree = combotree.tree();

// badly the tree is equal to combotree, and I stuck at this point

6  General Category / EasyUI for jQuery / Combotree - turn checkboxes on with config? on: December 18, 2013, 01:14:52 AM
Hi,

can I turn the checkboxes on in the combotree by only using the config?
7  General Category / EasyUI for jQuery / extensions/datagrid-filter.js - Combobox on: December 16, 2013, 06:11:17 AM
I use a combobox with the datagrid-filter extension. It is setup and has some key/value pairs in it. When I change it, the datagrid refresh is not called. How can I change this?

And, how can I disable the textinput?
8  General Category / EasyUI for jQuery / extensions/datagrid-filter.js - How to disable or remove a column? on: December 16, 2013, 04:22:49 AM
I try to remove all filterRules and set up the needed ones, but all filters are displayed:

Code:
$('#dg').datagrid('enableFilter');
$('#dg').datagrid('removeFilterRule');
$('#dg').datagrid('enableFilter', [{
field:'listprice',
type:'numberbox',
options:{precision:1},
op:['equal','notequal','less','greater']
}]);
9  General Category / EasyUI for jQuery / Re: Problem with Virtual Scrolling Extension [possible Bug] on: December 16, 2013, 12:06:07 AM
Thx! Smiley
10  General Category / EasyUI for jQuery / Multiselect Columns / Virtual-Scrolling-Extension - State lose on: December 12, 2013, 07:24:59 AM
Hi,

is it possible to use multicolumn select with virtual-scrolling? The problem is, that all selected rows lost there state on a data reload.
11  General Category / EasyUI for jQuery / Problem with Virtual Scrolling Extension [possible Bug] on: December 12, 2013, 05:58:43 AM
See this example: http://www.jeasyui.com/tutorial/datagrid/datagrid27_demo.html

if You set the pageSize for example to 100, it initial loads only 50 tablerows. When you scroll down, it next loads tabelrows 100-200 and there is a "hole" in the data.
12  General Category / EasyUI for jQuery / Re: Searchfields at the top of the column labels on: December 12, 2013, 01:39:43 AM
Is it possible to use a multi selectable dropbox for a colum filter?
13  General Category / EasyUI for jQuery / Re: Custom Filter for Datagrid on: December 09, 2013, 06:31:04 AM
Solution:

$('#dg').datagrid('load', {
        data1: data1,
        data2: data2,
        data3: data3,
    });


How can I trigger it, always when a second datagrids selection changes?
14  General Category / EasyUI for jQuery / Custom Filter for Datagrid on: December 09, 2013, 06:13:30 AM
I need to filter a datagrid (fetches data from a remote server) in a complex way, wich means that the filter depends on some other elements from outside the datagrid. For example, on the selected rows of a second datagrid. What I need is a function, that is called when the datagrids reload is triggert, where I can pass the needed data to the request.

How can I start with this. Thx.
15  General Category / EasyUI for jQuery / three regular vertical align panels in a layout on: December 05, 2013, 05:18:27 AM
Hello,

I try to use three vertical panels in a layout and initial every panel takes 100% width and 33% height.

Code:
<div id="content" region="center">
          ... main_datagrid
</div>
<div data-options="region:'west',split:true" id="content2" style="width:25%;"> // 25% would be much better
    <div id="p1" class="easyui-panel" style="height:33%;">
             ... datagrid_1
    </div>
    <div id="p2" class="easyui-panel"  style="height:33%;">
             ... datagrid_2
    </div>
    <div id="p3" class="easyui-panel"  style="height:33%;">
             ... datagrid_3
    </div>
</div>
Pages: [1] 2
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!