EasyUI Forum
October 16, 2025, 01:29:19 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: 1 [2] 3 4 ... 10
 11 
 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; }
}
})

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

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

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

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

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

 17 
 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'.

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

 19 
 on: June 11, 2025, 11:03:38 PM 
Started by jega - Last post by jega
Hi jarry.

Ohh i see. Just use the options

Thanks

 20 
 on: June 11, 2025, 05:01:00 AM 
Started by jega - Last post by jarry
Call the code below will recreate the datagrid again.
Code:
$('#dgList').datagrid({
   singleSelect:true           
});
You can set the 'title' property while creating the datagrid.
Code:
$('#dgList').datagrid({
   title: '...',
   singleSelect:true           
});

If you only want to change the selecting mode, please set the 'singleSelect' property instead of recreating the whole datagrid again.
Code:
$('#dgList').datagrid('options').singleSelect=true;

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