EasyUI Forum
April 28, 2024, 09:50:59 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 4 ... 239
16  General Category / EasyUI for jQuery / Re: Checkbox in datalist group header on: March 13, 2020, 07:24:28 AM
Please look at this example http://code.reloado.com/ireyik3/edit#preview
17  General Category / EasyUI for React / Re: ComboBox data-value relation on: March 11, 2020, 12:15:42 AM
Make sure the value exists in the data object. Once the data object is loaded, the displaying text will be updated according to the data object.

Another way to set the 'value' with 'text' on the ComboBox component is to call the 'setValue' method although the data object is not loaded yet.
Code:
this.combo.setValue({ value: 12, text: 'text12' });
18  General Category / EasyUI for jQuery / Re: datagrid data is loaded more than once on: March 10, 2020, 11:23:44 PM
If you are creating datagrid using javascript, please remove 'easyui-datagrid' class from your <table> element.
19  General Category / EasyUI for jQuery / Re: Can't set initial zIndex for a dialog on: February 27, 2020, 11:32:34 PM
Please set the 'z-index' value like this.
Code:
<script type="text/javascript">
    $.fn.window.defaults.zIndex = 50;
</script>
20  General Category / EasyUI for jQuery / Re: Right menu on TextEditor extension on: February 27, 2020, 11:28:07 PM
The code below works fine.
Code:
$(document).bind('contextmenu',function(e){
    var t = $(e.target).closest('.texteditor');
    if (!t.length){
        e.preventDefault(); 
    }
 
});
21  General Category / News / Re: jQuery EasyUI 1.5.5 Release on: January 23, 2020, 09:27:07 PM
The 'easyui-draggable' doesn't add any styles to the <div> elements.

How do you define the '.header' class? You can reset its height by overriding this CSS style.
Code:
.header{
  height: ...
}

This is another example using your draggable structural elements.

http://code.reloado.com/oqowux/2/edit#preview
22  General Category / News / Re: jQuery EasyUI 1.5.5 Release on: January 23, 2020, 06:08:32 AM
Please look at this example http://code.reloado.com/oqowux/edit#preview. The head of dialog displays well in chrome browser.
23  General Category / News / Re: jQuery EasyUI 1.5.5 Release on: January 22, 2020, 09:24:33 AM
This issue has been fixed. Please use a lower version of jQuery such as 1.9.x, or re-generate or re-download the themes from the site.
24  General Category / EasyUI for jQuery / Re: What dependencies when using easyloader and ribbon extensions on: January 20, 2020, 07:15:26 PM
Please refer to this code.
Code:
$.extend(easyloader.modules, {
ribbon: {
js: 'https://www.jeasyui.com/easyui/ribbon/jquery.ribbon.js',
css: 'https://www.jeasyui.com/easyui/ribbon/ribbon.css',
dependencies: ['linkbutton','tabs','menubutton','splitbutton']
}
})
25  General Category / EasyUI for jQuery / Re: Stop the events of pagination on: January 17, 2020, 06:48:00 PM
It works fine in Chrome. Please try to refresh your page and make sure the newest 'jquery.easyui.min.js' file is loaded successfully.
26  General Category / EasyUI for jQuery / Re: Stop the events of pagination on: January 16, 2020, 07:30:17 PM
Please look at this example https://www.jeasyui.com/demo/test/test9.html. It works fine.
27  General Category / EasyUI for jQuery / Re: Stop the events of pagination on: January 15, 2020, 07:21:25 PM
Please try to return false in the 'onBeforeSelectPage' event to stop paging. Be sure to download the newest version from the site.
Code:
pager.pagination({
onBeforeSelectPage(pageNumber,pageSize){
if (...){
return false;
}
}
})
28  General Category / EasyUI for jQuery / Re: Stop the events of pagination on: January 15, 2020, 01:50:58 AM
Please show some code snippets and describe your question in more detail.
29  General Category / EasyUI for jQuery / Re: How to display frozen columns both on left and right sides of DataGrid? on: January 09, 2020, 12:44:26 AM
Please overwrite these css styles to display the frozen columns on the right side.
Code:
<style type="text/css">
.datagrid-view1{
left: auto;
right: 0;
}
.datagrid-view2{
left: 0;
right: auto;
}
</style>
30  General Category / EasyUI for jQuery / Re: Getting field value from form on: December 19, 2019, 12:23:01 AM
Call the native method serializeArray to get all the form values.
Code:
var values = $('#ff').serializeArray();
// find  the value you expect
var item = values.filter(item => item.name === 'name');
console.log(item)
Pages: 1 [2] 3 4 ... 239
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!