EasyUI Forum
March 28, 2024, 10:25:01 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3 ... 239
1  General Category / EasyUI for jQuery / Re: How to hid textBox and combobox on: December 13, 2021, 07:49:07 PM
These methods will be included in next version. They can be defined as below:
Code:
$.extend($.fn.textbox.methods, {
   show: function(jq){
      return jq.each(function(){
         $(this).next().show();
         $($(this).textbox('label')).show();
      })
   },
   hide: function(jq){
      return jq.each(function(){
         $(this).next().hide();
         $($(this).textbox('label')).hide();
      })
   }
})
2  General Category / News / jQuery EasyUI 1.10.0 Release on: September 15, 2021, 08:25:17 PM
We are pleased to announce the availability of jQuery EasyUI 1.10.0.

  • Some bugs in previous version are fixed.
  • Some new properties and methods are added.
  • The drawer plugin is added.
  • ...

Please visit https://www.jeasyui.com/download/v110.php to see more details.
3  General Category / EasyUI for Vue / Re: v-Tooltip \r\n <br> is not work on: March 15, 2021, 11:52:06 PM
Please refer to this example https://www.jeasyui.com/demo-vue/main/index.php?plugin=Tooltip&theme=material-teal&dir=ltr&pitem=Tooltip%20Content&sort=asc
4  General Category / EasyUI for jQuery / Re: Panel tool button with text on: March 15, 2021, 11:39:01 PM
Please refer to the code below.
Code:
<div id="dlg" class="easyui-dialog" title="Basic Dialog" data-options="iconCls:'icon-save'" style="width:400px;height:200px;padding:10px">
<header class="f-row">
<div class="panel-title f-full">
<span style="display:inline-block;line-height:20px">title</span>
</div>
<a href="#" class="easyui-linkbutton" style="height:20px">textbutton</a>
</span>
</header>
<div>The dialog content.</div>
</div>
Code:
$(function(){
$('#dlg').data('window').window.draggable({
handle: '>.panel-header>.panel-title'
})
})
5  General Category / Bug Report / Re: html standards issue on: January 20, 2021, 02:33:14 AM
Please try to update to a newer version using your download link.
6  General Category / General Discussion / Re: calendar event onPaint or onRepaint on: October 04, 2020, 02:44:32 AM
Please look at this documentation https://www.jeasyui.com/documentation/calendar.php
7  General Category / General Discussion / Re: easyui for POS on: July 27, 2020, 12:42:34 AM
The EasyUI is a pure javascript library, it can be used to build your ui that runs in all major browsers. If your POS system uses html5 technology to build your ui then the EasyUI is suitable for your system.
8  General Category / General Discussion / Re: connection to database on: July 27, 2020, 12:21:37 AM
This tutorial shows how to create a database table and retrieves data using a php script.
Please look at this tutorial https://www.jeasyui.com/tutorial/app/crud.php
9  General Category / General Discussion / Re: type of file on: July 27, 2020, 12:14:11 AM
Please look at this tutorial https://www.jeasyui.com/tutorial/app/crud.php
10  General Category / EasyUI for jQuery / Re: combobox with disabled item on: July 22, 2020, 11:51:56 PM
The code below shows how to disable the second line on the combobox items.
Code:
var cc = $('#cc');
var data = cc.combobox('getData');
data[1].disabled = true;
cc.combobox('loadData', data);
11  General Category / General Discussion / Re: DataGrid: Can server send update with new list without client req from browser? on: June 11, 2020, 02:25:26 AM
The request must be made from the browser, the http will be broken after the request is made.
12  General Category / General Discussion / Re: Datagrid => howto mouve a row on the top of datagrid after an event on: May 27, 2020, 12:36:29 AM
Remove the specified row and then insert it again to where you want. The code below shows how to move a selected row to the top.
Code:
var dg = $('#dg');
var row = dg.datagrid('getSelected');
var index = dg.datagrid('getRowIndex', row);
if (index > 0){
  dg.datagrid('deleteRow', index);
  dg.datagrid('insertRow', {index:0,row:row})
}
13  General Category / EasyUI for Vue / Re: dblclickToEdit ="true" on: May 13, 2020, 07:05:00 PM
A possible solution to solve this issue is, listen to the 'cellClick' event and end editing when clicking another row. Please refer to the code below:
Code:
<DataGrid
      ref="dg"
      @cellClick="onCellClick($event)"
      ...
Code:
onCellClick(event){
  const dg = this.$refs.dg;
  if (dg.editingItem && event.row != dg.editingItem.row){
    this.$refs.dg.endEdit()
  }
}
14  General Category / EasyUI for Vue / Re: getting error when trying to edit cell on: May 13, 2020, 01:34:09 AM
Please use the NumberBox editor for your 'latitude' and 'longitude' fields.
Code:
<GridColumn field="latitude" title="Latitude" :editable="true" >
<template slot="edit" slot-scope="scope">
<NumberBox v-model="scope.row.latitude" :precision="2"></NumberBox>
</template>
</GridColumn>
<GridColumn field="longitude" title="Longitude" :editable="true" >
<template slot="edit" slot-scope="scope">
<NumberBox v-model="scope.row.longitude" :precision="2"></NumberBox>
</template>
</GridColumn>
15  General Category / EasyUI for React / Re: CheckBox with tabIndex inconsistencies on: April 06, 2020, 08:25:49 PM
Please try to update to the newest version.
Pages: [1] 2 3 ... 239
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!