EasyUI Forum
January 24, 2026, 05:27:35 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: 1 2 3 [4] 5 6 ... 10
 31 
 on: August 14, 2025, 06:38:52 PM 
Started by jega - Last post by jarry
Please set the 'showEvent' property value to 'click'. This means that the menu won't show until the 'click' event is triggered.
Code:
<a href="javascript:void(0)" class="easyui-menubutton"
data-options="iconCls:'icon-more',menu:'#mm1',menuAlign:'right',hasDownArrow:false,showEvent:'click'">
</a>

 32 
 on: August 12, 2025, 08:16:38 AM 
Started by jega - Last post by jega
Hi Jarry.

It's excatly the same i do.

Problem is, when you go to the site on an  iphone, and click on menu button, the three dots, it open and close the menu again.

It doesn't work on iphone/ipad. Have tried it on both Safari and Chrome, same error

Try your demo/mobile demos/menu/basic. Same problem. Can't show menu on iphone/ipad

 33 
 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.

 34 
 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>

 35 
 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; }
}
})

 36 
 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>

 37 
 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?

 38 
 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 ?

 39 
 on: July 07, 2025, 05:36:26 AM 
Started by Vladzimir - Last post by Vladzimir
Wrapper upgrade to actual version EasyUI - 1.11.3

 40 
 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') ??
}

Pages: 1 2 3 [4] 5 6 ... 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!