EasyUI Forum
May 18, 2024, 03:54:14 AM *
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 / Re: textbox width=100% display not correctly in flex mode on: January 16, 2024, 05:00:57 AM
thanks jarry... best wishes

more more money~~~~ Wink Wink
2  General Category / EasyUI for jQuery / Re: textbox width=100% display not correctly in flex mode on: January 12, 2024, 01:05:13 AM
still has some bug in display with container width is adjust to small such as 300px:

Code:

    <div style="width:300px;display:flex;">
        <div style="margin:2px;flex:1;border:1px solid red;">
          <input type="text" style="width:100%;" />
        </div>
        <div style="margin:2px;flex:1;border:1px solid blue;">
            <input type="text" style="width:100%;" />
        </div>
    </div>

    <div style="width:300px;display:flex;">
        <div style="margin:2px;flex:1;border:1px solid red;">
          <input class="easyui-datebox" data-options="" style="width:100%;">
        </div>
        <div style="margin:2px;flex:1;border:1px solid blue;">
            <input class="easyui-datebox" data-options="" style="width:100%;">
        </div>
    </div>


datebox width has overflow, whether it has min-width setting?
3  General Category / EasyUI for jQuery / textbox width=100% display not correctly in flex mode on: January 11, 2024, 07:09:42 AM
See next code:

Code:

    <div style="width:800px;display:flex;">
        <div style="margin:2px;flex-grow:1;border:1px solid red;">
          <input type="text" style="width:100%;min-width:0;" />
        </div>
        <div style="margin:2px;flex-grow:1;border:1px solid blue;">
            <input type="text" style="width:100%;min-width:0;" />
        </div>
    </div>

    <div style="width:800px;display:flex;">
        <div style="margin:2px;flex-grow:1;border:1px solid red;">
          <input class="easyui-datebox" data-options="" style="width:100%;">
        </div>
        <div style="margin:2px;flex-grow:1;border:1px solid blue;">
            <input class="easyui-datebox" data-options="" style="width:100%;">
        </div>
    </div>


in first row, two input each space 50% width as experted.

but in second row, textbox not show correctly

it seams some bug in textbox render...
4  General Category / EasyUI for jQuery / Re: how to append datalist to a context-menu on: April 17, 2016, 01:57:40 AM
 Huh Huh Huh Huh Huh

hope for help....
5  General Category / EasyUI for jQuery / Re: how to append datalist to a context-menu on: April 13, 2016, 06:31:15 AM
SOS!!!!  @stworthy   
6  General Category / EasyUI for jQuery / how to append datalist to a context-menu on: April 11, 2016, 11:16:23 PM
I want to achieve following effects:



how can I append to datalist to context-menu?

thanks a lot.
7  General Category / EasyUI for jQuery / Re: can easyui-team open css-builder for us for some project use? on: December 08, 2015, 05:01:57 PM
thanks  Kiss Kiss Kiss
8  General Category / EasyUI for jQuery / can easyui-team open css-builder for us for some project use? on: December 08, 2015, 07:34:51 AM
I remember this website ever exist a CSS-Rebuilder program for developers to re-define CSS style and extend original themes, but now can not find it, I'm just to adjust some text-size and color in my project easyui theme, hope  easyui-team can supply this CSS-rebuilder progream on this website, thanks.
9  General Category / Bug Report / A problem with textbox when width or height property set to 100% on: December 03, 2015, 08:27:04 PM
Next code works well in EasyUI 1.4.1 version:

Code:

<html>
<head>
    <link rel="stylesheet" type="text/css" href="/lib/js/jeasyui1.4.1/themes/default/easyui.css" />
<script type="text/javascript" src="/lib/js/jeasyui1.4.1/jquery.min.js"></script>
    <script type="text/javascript" src="/lib/js/jeasyui1.4.1/jquery.easyui.min.js"></script>
</head>
<body>

<div id="dlgNodeHandle" class="easyui-dialog" style="padding:10px;" title="TestResizeDialog" data-options="width:600,height:450,modal:true,closed:false,resizable:true">
    <table cellspacing="0" cellpadding="4" border="1" width="100%" height="100%">
        <tr>
    <td valign="top">
                <input class="easyui-textbox" name="tbHandleInfo" data-options="multiline:true" style="width:100%;height:100%"/>
            </td>
        </tr>
    </table>
</div>

</body>
</html>


When resize dialog, Inner textbox will auto-resize and fit whole dialog. But if change EasyUI Latest Version 1.4.4, It Seems not run ok:

Code:

<html>
<head>
    link rel="stylesheet" type="text/css" href="/lib/js/themes/default/easyui.css" />
<script type="text/javascript" src="/lib/js/jquery.min.js"></script>
    <script type="text/javascript" src="/lib/js/jquery.easyui.min.js"></script>
</head>
<body>

<div id="dlgNodeHandle" class="easyui-dialog" style="padding:10px;" title="TestResizeDialog" data-options="width:600,height:450,modal:true,closed:false,resizable:true">
    <table cellspacing="0" cellpadding="4" border="1" width="100%" height="100%">
        <tr>
    <td valign="top">
                <input class="easyui-textbox" name="tbHandleInfo" data-options="multiline:true" style="width:100%;height:100%"/>
            </td>
        </tr>
    </table>
</div>

</body>
</html>


Notice that if textbox is the only elements in dialog, it works well in both two version, but if textbox in table, it can not work.

plz check.
10  General Category / Bug Report / Re: easyui1.4 textbox ie bug on: March 30, 2015, 02:05:41 AM
I have encountered this problem too. hope FOR HELP!
11  General Category / Bug Report / Can Accordion support Horizontal mode? on: March 30, 2015, 02:03:42 AM
current panel are vertical mode, can it run in horizontal mode?
12  General Category / Bug Report / Re: A line-break bug in multiline textbox with version 1.4.1 on: March 05, 2015, 08:48:52 PM
Nobody encountered this problem?

In the 1.4.1 version can not wrap, press the Enter key is useless
13  General Category / Bug Report / A line-break bug in multiline textbox with version 1.4.1 on: March 02, 2015, 11:10:11 PM
Multiline textbox with next code:

<input id="tbTempForm" type="text" name="tempForm" class="easyui-textbox" data-options="width:600,height:300,multiline:true" />

run OK in jeasyui 1.4, but in the latest version 1.4.1, cannot display Key 'Enter' and can not line-break.

Please check this problem, thanks.
14  General Category / Bug Report / Re: about textbox html property maxlength not avalible in jeasyui on: March 02, 2015, 11:07:08 PM
thanks.
15  General Category / Bug Report / about textbox html property maxlength not avalible in jeasyui on: March 02, 2015, 05:44:09 PM
see this code:

<input id="tbA" type="text" name="tbA" maxlength="10" class="easyui-textbox" />
<input id="tbB" type="text" name="tbB" maxlength="10" />

preview in explore,first input's maxlength property not take effect. but second has.

I know can use next code to achieve this function:

<input id="tbA" type="text" name="tbA" class="easyui-textbox"  data-options="validType:'length[0,10]'" />
<input id="tbB" type="text" name="tbB" maxlength="10" />

But it is not a  good user experience, Able to retain this property?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!