EasyUI Forum
September 13, 2025, 04:54:38 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / totally hide a layout region on: March 05, 2014, 01:16:48 AM
Is possible to hide a region of layout totally?

example,

I wanna hide east region,
include collapsible button, header-panel,  panel-body,...
(when hidden, don't occupy any space)

then program to collapse, expand the region.
2  General Category / EasyUI for jQuery / Re: How can I move tabs? on: March 02, 2014, 07:14:08 AM
It's worked.

Thanks a lot.
3  General Category / EasyUI for jQuery / Re: How can I move tabs? on: March 02, 2014, 01:45:53 AM
I'm sorry.

tab can move from 3 to 2 (index smaller then selected index),

but from 2 to 3 cannot work (index greater then selected index).
4  General Category / EasyUI for jQuery / Re: How can I move tabs? on: March 01, 2014, 08:06:12 PM
Yes, It's work, Thanks a lot.

But, If I move tabs' Index 2 to tabs' Index 3 (move to right),
some problem:

click tabs' 2 title, show tabs' 3,
click tabs' 3 title, show tabs' 2.
5  General Category / EasyUI for jQuery / How can I move tabs? on: February 28, 2014, 01:27:12 AM
If I created 3 tab in tabs,
I want to move tab' position 2 to posision 1,
How to do?
6  General Category / EasyUI for jQuery / Re: Can I format datagrid in edit mode? on: January 28, 2014, 09:45:21 AM
ok, I found the formatter
in editor options, ex:

<th data-options="field:'saleprc',align:'right',width:80,
                  formatter: function(value,row){
                    if (!isNaN(parseFloat(value))){return parseFloat(value);}
                  }"
                  editor="{
                  type:'numberbox',
                  options:{precision:3,
                  formatter:function(value){
                    if (!isNaN(parseFloat(value))){return parseFloat(value);}
                  }
                  }}">
7  General Category / EasyUI for jQuery / Re: Can I format datagrid in edit mode? on: January 26, 2014, 07:56:13 PM
Sorry,

I like to input 3 prescision , but trim tail 0,
Like easyui-numberbox formater:
    data-options="precision:3,
                    formatter:function(value){
                      var value = $.fn.numberbox.defaults.formatter.call(this,value);
                      value = parseFloat(value);
                      return value;}"
how to do this in datagrid edit mode?

Jimmy
8  General Category / EasyUI for jQuery / Re: If possible to format validatebox text? on: January 26, 2014, 07:48:30 PM
but,

sometime, I like to format telephone 0223653376 to  (02)2365-3376,
how to do this?

Jimmy
9  General Category / EasyUI for jQuery / Can I format datagrid in edit mode? on: January 26, 2014, 01:11:48 AM
Can I format a decimal number, 2.300 to 2.3,
In datagrid edit mode?

JIMMY
10  General Category / EasyUI for jQuery / If possible to format validatebox text? on: January 26, 2014, 01:07:47 AM
As subject

Example, this validatebox text is 20140126,
can I format to 2014/01/26?

JIMMY
11  General Category / EasyUI for jQuery / Datagrid scrollview cannot trigger onLoadSuccess events, when record is zero? on: December 22, 2013, 09:01:25 PM
I load datagrid's records from remote json document,
if I set datagrid data-options="view:scrollview", and loaded json record is zero,
cannot trigger onLoadSuccess.

but, if I didn't use "view:scrollview" option, it's normal.

is possible to trigger onLoadSuccess, when loaded json record is zero?

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