EasyUI
| Home | Help | Search | Login | Register |
|
11
on: August 12, 2025, 12:00:52 AM
|
||
| Started by Coder - Last post by jarry | ||
|
This documentation is available now. Please download it from that link.
|
||
|
12
on: August 11, 2025, 11:13:28 PM
|
||
| Started by jega - Last post by jarry | ||
|
This is the code that shows the panel header with the menu on the right.
Code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>Basic Menu - jQuery EasyUI Mobile Demo</title> <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/material-blue/easyui.css"> <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/mobile.css"> <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css"> <script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.min.js"></script> <script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.easyui.min.js"></script> <script type="text/javascript" src="https://www.jeasyui.com/easyui/jquery.easyui.mobile.js"></script> </head> <body> <div class="easyui-navpanel"> <header> <div class="m-toolbar"> <div class="m-title">TEST</div> <div class="m-right"> <a href="javascript:void(0)" class="easyui-menubutton" data-options="iconCls:'icon-more',menu:'#mm1',menuAlign:'right',hasDownArrow:false"></a> </div> </div> </header> </div> <div id="mm1" class="easyui-menu" style="width:200px;"> <div data-options="iconCls:'icon-photo_portrait_16'" onclick="test()">Test</div> </div> </body> </html> |
||
|
13
on: August 11, 2025, 11:05:46 PM
|
||
| Started by jaimi - Last post by jarry | ||
|
This code shows how to disable some date fields(only Monday can be selected).
Code: $('#dd').datebox().datebox('calendar').calendar({ validator: function (date) { if (date.getDay() == 1) { return true; } else { return false; } } }) |
||
|
14
on: August 06, 2025, 02:56:03 AM
|
||
| Started by jega - Last post by jega | ||
|
Hi.
Need help with big problem. This code doesn't work on iphones safari or chrome or edge. On Samsung phones it works fine. Have testet on easyui demo and this is same problem. Any solution to get it to work on iphone <header> <div class="m-toolbar"> <div class="m-title">TEST</div> <div class="m-right"> <a href="javascript:void(0)" class="easyui-menubutton" data-options="iconCls:'icon-more',menu:'#mm1',menuAlign:'right',hasDownArrow:false"></a> </div> </div> </header> <div id="mm1" class="easyui-menu" style="width:200px;"> <div data-options="iconCls:'icon-photo_portrait_16'" onclick="test()">Test</div> </div> |
||
|
15
on: August 03, 2025, 08:39:23 PM
|
||
| Started by jaimi - Last post by jaimi | ||
|
How can I disable date fields in the datebox?
can you give me an example? |
||
|
16
on: August 03, 2025, 01:37:29 PM
|
||
| Started by Coder - Last post by Coder | ||
|
Thnx, newest documentation https://www.jeasyui.com/download/downloads/jquery-easyui-doc-1.11.3.zip ?
|
||
|
17
on: July 07, 2025, 05:36:26 AM
|
||
| Started by Vladzimir - Last post by Vladzimir | ||
|
Wrapper upgrade to actual version EasyUI - 1.11.3
|
||
|
18
on: July 05, 2025, 05:26:20 AM
|
||
| Started by Coder - Last post by Coder | ||
|
need to change column header after .datagrid('reload')
Code: hformatting: (title,col)=>{ return !globalKey? title : `<span>... ... ... ${title}</span>`} what can I use for refresh header cell title ? Code: onLoadSuccess: ()=>{ .datagrid('renderHeader') ?? } |
||
|
19
on: June 24, 2025, 01:56:47 AM
|
||
| Started by Aod47 - Last post by jarry | ||
|
Please set the 'spinAlign' property value to 'horizontal' or 'vertical'.
|
||
|
20
on: June 21, 2025, 08:10:11 PM
|
||
| Started by Aod47 - Last post by Aod47 | ||
|
Dear sir,
I used Numberspinner with Mobile mode but can not click on button (+/-) when display on mobile phone. Could you please advice. |
||