EasyUI Forum
April 16, 2024, 07:57:17 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2
1  General Category / EasyUI for jQuery / Datalist Disable and Enable on: December 27, 2022, 02:51:31 AM
Dear All,

I would like to know if there is a way to disable and enable a Datalist Element, since it will be enabled on edit button.

your help is highly appreciated
2  General Category / EasyUI for jQuery / Re: treegrid clear issue on: August 17, 2022, 10:19:49 PM
thanks jarry,

you saved my day Smiley

the method not listed in documentation
3  General Category / EasyUI for jQuery / treegrid clear issue on: August 17, 2022, 09:52:03 AM
Dear All,

hope you are doing well,

I do face an issue with treegrid as it has dynamic dataset json
and when loading new dataset json it still has the checked nodes Sad
I do use
for clear
$('#tg').treegrid('loadData',{"rows":[],"total":0});

for new dataset
$('#tg').treegrid('loadData',JSONformattedData);

and when I use
var rows = $('#tg').treegrid('getCheckedNodes');

it still has previously checked nodes even they completely cleared Cry

your help is highly appreciated
4  General Category / EasyUI for jQuery / Re: rtl issue on switchbutton on: May 17, 2022, 07:39:39 AM
am already using the latest version or RTL Extension
5  General Category / EasyUI for jQuery / rtl issue on switchbutton on: May 16, 2022, 11:31:52 PM
Dear All,

I have an issue on RTL support for switchbutton as for label position mismatch and once clicked on the label the UI corrupted Sad

attached image as reference, the element of switchbutton is corrupted after clicking on label and the label itself not aligned to right as well

Note: latest version of RTL Extension is used
6  General Category / EasyUI for jQuery / Dynamic Portal Widgets on: April 25, 2022, 12:50:20 AM
Dear All,

hope you all doing well, and wish you a good day too.

I am currently trying to work with Portal Extension which is so lovely Extension to have.

but I have some concerns if you could help me with>

The Portal Panel depends on number of columns predefined and the widget should be fit to one column at a time Sad

as for Dynamic Dashboards new Widgets has to be freely customized as for graphs probably.

so the desired layout  should support block diagrams with dynamic width block levels, lets say each row consists of 5 blocks and widget width is variant between 1 to 5 blocks

attached an illustrated image from firewall dashboard for reference
7  General Category / EasyUI for jQuery / Re: portal within bootstrap on: April 22, 2022, 05:12:02 AM
Thank you Jarry

you saved my day.

but another thing if you could help....

how can I made a dynamic widgets (portal elements)

example:
I split the portal Divs for 25% each
so now I need to place 3 widgets 2 with size of 25% and 1 with size of 50%
8  General Category / EasyUI for jQuery / portal within bootstrap on: April 20, 2022, 05:45:50 PM
Dear all

hope you all doing well

I do need a little help in Portal Extension

as while using it on native easyui only it works well, but once I tried to apply it on div with a class it not rendered correctly

I do use admin template based on Bootstrap and the "px-content" container holds the page contents and for a dashbard page am welling to have a portal extension

when it casts on body tag no issues, but it should be on div element instead of body tag

your help is highly appreciated
9  General Category / EasyUI for jQuery / Re: combotree limittolist on: January 28, 2022, 08:56:36 AM
thanks Jarry, it worked as expected  Kiss
10  General Category / EasyUI for jQuery / combotree limittolist on: January 15, 2022, 04:09:10 AM
Dear All,

hope you doing well, and wish you a good day too.

I would like to ask if I can apply limitToList Property, since I need to force only tree items to be selected

combotree has editable property with filter and it has keyboard navigation

your help is highly appreciated
11  General Category / EasyUI for jQuery / Datalist Group and Subgroups on: September 10, 2021, 11:58:05 AM
Hi All,

is there a way to Group Datalist in Hierarchy way as below

First Group Header "General Ledger"
First Subgroup No. 1 Header "Accounts"
First Subgroup No. 1 Items "View Accounts", "Add Accounts", "Edit Accounts", "Disable Accounts"

First Subgroup No. 2 Header "Journals"
First Subgroup No. 2 Items "View Journals", "Add Journals", "Edit Journals", "Void Journals", "Approve Journals"

and so on..

please any help is appreciated
12  General Category / EasyUI for jQuery / Combobox onBeforeSelect on: September 07, 2021, 06:41:28 AM
Dears,

I need help to prevent selecting an item from combobox depending on if statement

your help is highly appreciated
13  General Category / EasyUI for jQuery / Re: tagbox in datagrid on: February 19, 2020, 09:31:06 PM
thanks jarry,

you save my day, but when I set tagFormatter in markup way its not working properly, and returns the values instaed of textField

any suggestions?
14  General Category / EasyUI for jQuery / tagbox in datagrid on: February 17, 2020, 10:56:18 PM
Dear All,
please can you help me on how to use tagbox editor in datagrid

i do use for now a combobox and I need to change it to tagbox

Code:
<th style="width:30%;" data-options="field:'vendor_id',formatter:function(value,row){return row.vendor_name;},editor:{type:'combobox'}">Vendor Name</th>
<th style="width:30%;" data-options="field:'vendor_ids',tagFormatter:function(value,row){var opts=$(this).tagbox('options'); return row ? row[opts.textField] : value;},editor:{type:'tagbox'}">Vendor Name</th>

Code:
<script type="text/javascript">
    $('#dg_rfq_trans').datagrid({
        onBeforeEdit: function(rowIndex,row){
            var material = $('#dg_rfq_trans').datagrid('getColumnOption', 'material_id');
            material.editor = {
                type:'combobox',
                options:{
                    valueField:'id',
                    textField:'text',
                    method:'get',
                    data:accounts.material,
                    required:true,
                    value:row.material_id,
                    onChange:function(value){
                       
                    }
                }
            }
            var vendor = $('#dg_rfq_trans').datagrid('getColumnOption', 'vendor_id');
            vendor.editor = {
                type:'combobox',
                options:{
                    multiple:true,
                    valueField:'id',
                    textField:'text',
                    method:'get',
                    data:accounts.vendor,
                    required:true,
                    value:row.vendor_id,
                    onChange:function(value){
                       
                    }
                }
            }
            var vendors = $('#dg_rfq_trans').datagrid('getColumnOption', 'vendor_ids');
            vendors.editor = {
                type:'tagbox',
                options:{
                    data:accounts.vendor,
                    valueField:'id',
                    textField:'text',
                    value:row.vendor_id,
                    limitToList: true,
                    hasDownArrow: true
                }
            }
        }
    });
</script>
15  General Category / EasyUI for jQuery / Re: Client Side Pagination on: October 29, 2019, 07:19:20 AM
Dear Jarry,

thanks for your help, but is it only doable by load small mount then load the large data?Huh

since the datagrid will be filled upon user filtration Sad

which might be small or large depending on the selected interval...

your guidance is highly appreciated
Pages: [1] 2
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!