EasyUI Forum
May 01, 2024, 08:01:27 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
1  General Category / EasyUI for jQuery / Re: vertical-align on datagrid cell on: June 16, 2015, 07:13:58 PM
tks, again!
2  General Category / EasyUI for jQuery / Re: vertical-align on datagrid cell on: June 16, 2015, 07:07:06 AM
...btw, and how can I change the padding value of a column?
tks,
3  General Category / EasyUI for jQuery / Re: vertical-align on datagrid cell on: June 15, 2015, 05:37:29 PM
tks,
4  General Category / EasyUI for jQuery / vertical-align on datagrid cell on: June 15, 2015, 12:48:03 PM
Hi,

How can I change the vertical-align to 'top' or 'bottom' instead of middle?

Is it possible? I found no reference.

Tks,
5  General Category / EasyUI for jQuery / Re: Dialog border size on: June 04, 2015, 07:07:42 PM
Tkanks
6  General Category / EasyUI for jQuery / Dialog border size on: June 04, 2015, 03:52:36 PM
Hi,

How to change the dialog/window border width?

Tks,
7  General Category / Bug Report / Re: restore method does not restore a minimized dialog on: May 23, 2015, 03:22:29 PM
tks,
8  General Category / Bug Report / restore method does not restore a minimized dialog on: May 23, 2015, 08:40:51 AM
Hi,

It works for a maximized but not for a minimized dialog.

Am I doing something wrong?

Tks,
9  General Category / EasyUI for jQuery / Re: window/dialog position on: May 15, 2015, 07:10:07 PM
thanks,
10  General Category / EasyUI for jQuery / window/dialog position on: May 09, 2015, 04:27:24 PM
Hi,

How to keep a window/dialog always on center of its parent? :/

Tks
11  General Category / Bug Report / Re: resizing a textbox inside a tabs on version 1.4.2 on: April 20, 2015, 07:34:30 PM
thank you so much for your help, but I still have a problem.
Can you check this version?

Code:
<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <meta name="mobile-web-app-capable" content="yes">
        <meta name='viewport' content="initial-scale=1.0,maximum-scale=1.0, user-scalable=no">
        <title>easyui 1.4.2 test</title>
        <link rel="stylesheet" type="text/css" href="http://www.jeasyui.com/easyui/themes/default/easyui.css">
        <link rel="stylesheet" type="text/css" href="http://www.jeasyui.com/easyui/themes/icon.css">
        <link rel="stylesheet" type="text/css" href="http://www.jeasyui.com/easyui/themes/color.css">
        <script src="http://www.jeasyui.com/easyui/jquery.min.js"></script>
        <script src="http://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
    </head>

    <body>
        <h3>Tasks:</h3>
        <ul style="font-size:1.1em">
            <li>The second tab should be selected on page load;</li>
            <li>When resizing the browser the textbox (id="user_name") should be resized too;</li>
        </ul>
        <p>This code works fine on 1.4.1 but don't on 1.4.2</p>
        <div id="tt" class="easyui-tabs"
             data-options="
             pill:true,
             plain:true,
             border:false"
             style="width:90%;margin:auto;height:auto">
            <div title="About" style="padding:10px">
                <p>bla, bla, bla...</p>
            </div>
            <div title="User Info" style="padding:16px;">
                <div class="easyui-accordion" data-options="width:'100%'">
                    <div data-options="title:'Details'" style="padding:8px">
                        <table style="width:100%">
                            <tr>
                                <td>
                                    Name<br>
                                    <input id="user_name" class="easyui-textbox" data-options="width:'100%'">
                        </table>
                    </div>
                </div>
            </div>
        </div>
        <script>
            $(document).ready(function () {
                $('#tt').tabs('select', 1);
            });
        </script>
    </body>
</html>

Again, it works as expected on 1.4.1.
Tks for your time.
12  General Category / Bug Report / Re: resizing a textbox inside a tabs on version 1.4.2 on: April 19, 2015, 04:36:07 PM
thank you for ur answer, but it did not work (the text width is now just 10px wide); Embarrassed
Another thing: the second page IS NOT selected when the page is loaded (on 1.4.2).
I guess there is something missing in 1.4.2 resize event (please, be patient, I'm new  Undecided)
btw, sorry my English.
13  General Category / Bug Report / resizing a textbox inside a tabs on version 1.4.2 on: April 17, 2015, 08:38:11 AM
The following code is not working on 1.4.2  Embarrassed.
What am I missing?
Tks,

Code:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Tabs</title>
        <link rel="stylesheet" type="text/css" href="http://www.jeasyui.com/easyui/themes/default/easyui.css">
        <link rel="stylesheet" type="text/css" href="http://www.jeasyui.com/easyui/themes/icon.css">
        <script src="http://www.jeasyui.com/easyui/jquery.min.js"></script>
        <script src="http://www.jeasyui.com/easyui/jquery.easyui.min.js"></script>
    </head>
    <body>
        <h3>Tasks:</h3>
        <ul style="font-size:1.1em">
            <li>The second tab should be selected on page load;</li>
            <li>When resizing the browser the textbox (id="user_name") should be resized too;</li>
        </ul>
        <p>This code works fine on 1.4.1 but don't on 1.4.2</p>
        <div id="tt" class="easyui-tabs" style="width:90%;margin:auto;height:auto">
            <div title="About" style="padding:10px">
                <p>bla, bla, bla...</p>
            </div>
            <div title="User Info" style="padding:16px;display:table">
                <div style="display:table-cell;padding-right: 4px">Id<br>
                    <input id="user_id" class="easyui-textbox">
                </div>
                <div style="width:100%;display:table-cell">Name<br>
                    <input id="user_name" class="easyui-textbox" style="width:100%">
                </div>
            </div>
        </div>
        <script>
            $(document).ready(function () {
                $('#tt').tabs('select', 1);
            });
        </script>
    </body>
</html>
14  General Category / EasyUI for jQuery / Re: setting the focus to textbox inside accordion onSelect event on: April 10, 2015, 08:42:47 AM
Solved, thank you so much.
15  General Category / EasyUI for jQuery / Re: setting the focus to textbox inside accordion onSelect event on: April 10, 2015, 08:19:34 AM
Tks for your answer.
Yes, the '=' is wrong, but it is not the real code, my mistake. It still donĀ“t work.
I added a button to do the same code ($('#id_user').textbox('textbox').focus()) and it worked.
I guess there is something wrong with the event handler.
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!