EasyUI Forum
September 14, 2025, 01:53:33 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 / Group by draging a column in data grid on: January 26, 2022, 05:02:26 PM
Is there a way to group by filed by drage a column to group panel ?

example
https://ej2.syncfusion.com/demos/#/bootstrap5/grid/lazy-load-grouping.html
2  General Category / EasyUI for jQuery / What good reporting tool ? on: January 24, 2022, 01:36:27 PM
Hi

any online good reporting tool that allow me to design and embedd in web app ? free or paid but not expensive.

Thanks
3  General Category / EasyUI for jQuery / Re: Charts on: January 19, 2022, 07:55:20 AM
Thanks
4  General Category / EasyUI for jQuery / Re: Cascade combo box on: January 19, 2022, 07:50:45 AM
many thanks squidoz
5  General Category / EasyUI for jQuery / Charts on: January 19, 2022, 07:16:29 AM
Hi

No Charts tools ?
6  General Category / EasyUI for jQuery / Cascade combo box on: January 19, 2022, 07:14:15 AM
Hi

How I create cascade combobox ? for example selected value in first combobox change values loaded in second one.
7  General Category / EasyUI for jQuery / Re: How to make custom filter for data in the grid on: March 01, 2019, 01:16:49 PM
any documentation to read more about this code ?
8  General Category / EasyUI for jQuery / How to make custom filter for data in the grid on: February 28, 2019, 02:38:58 PM
I am just displaying the grid a standard way but I need to create custom filter like list data between two months only or two weeks . I know how to do that in PHP but how to filter the data displayed in the grid ?

Also is there UI tool I can use for this filter ?
9  General Category / EasyUI for jQuery / Car view plugin on: March 06, 2016, 02:03:40 PM
Hi,
Is there a card view plugin like in this picture
http://kswblog.azurewebsites.net/wp-content/uploads/2015/09/screenshot_884.png

I need to display cards and be able to drag and drop cards from one column to another.
10  General Category / EasyUI for jQuery / Re: pass current selected record data in a grid to another php file on: January 18, 2016, 12:11:33 PM
I found a way , I used cookies and then read the data using json_decode.
11  General Category / EasyUI for jQuery / Re: pass current selected record data in a grid to another php file on: January 18, 2016, 08:01:03 AM
Is there any method to send row object to detail.php page and also move to this page ?
12  General Category / EasyUI for jQuery / Re: pass current selected record data in a grid to another php file on: January 17, 2016, 06:53:49 PM
Thanks I tried JQuery post and it really post row to another php page (ex detail.php) but the problem I still stay at the grid page I need to also to move to this new page detail.php to simply display the grid current selected record in a form style, any idea ?
13  General Category / EasyUI for jQuery / Re: pass current selected record data in a grid to another php file on: January 17, 2016, 11:31:25 AM
I can read the id and then select from the db all fields again but I was wondering if datagrid can pass the row object with all values to another php page or not ?.
14  General Category / EasyUI for jQuery / pass current selected record data in a grid to another php file on: January 14, 2016, 05:23:32 PM
I use inline grid and I need to pass all the fields values of the current selected record to another php file and same time navigate to this page so I can read values like this:

$myvar = $_REQUEST['field'];

So I added new button on the grid tool bar like this:
Code:
<a href="#" class="easyui-linkbutton" iconCls="icon-more" plain="true" onclick="getSelected()">Detail Page</a>

And the script was like this

Code:
<script type="text/javascript">
    function getSelected(){
        var row = $('#dg').datagrid('getSelected');
        if (row){
            window.location = 'job_detail.php?jd='+row.job_message_id;
</script>

I dont want to pass about 15 fields in a GET way so is there a way to POST all values to job_detail.php page ?
15  General Category / EasyUI for jQuery / Re: Entering date and time into datetime field on: January 14, 2016, 10:31:19 AM
Thanks jarry I used this code:

Code:
<th field="job_stamp" width="120" data-options="
                                    editor:{
                                        type:'datetimebox',
                                        options:{
                                            formatter: function(date){
                                                if (!(date instanceof Date)) date = new Date(date);
                                                var h = date.getHours();
                                                var M = date.getMinutes();
                                                var s = date.getSeconds();

                                                function _ff(v) {
                                                    return (v < 10 ? '0' : '') + v;
                                                };
                                                return _ff(date.getFullYear())+'-'+_ff(date.getMonth()+1)+'-'
                                                    +date.getDate() + ' ' + _ff(h)+':'+_ff(M)+':'+_ff(s);
                                            },
                                            parser: function(s){
                                                if ($.trim(s) == '') {
                                                    return new Date();
                                                }
                                                var dt = s.split(' ');
                                                var p1 = dt[0].split('-');
                                                var p2 = dt[1].split(':');
                                                return new Date(p1[0],p1[1]-1,p1[2],p2[0],p2[1],p2[2]);

                                            },
                                            required:true,

                                        }
                                    }
                                    ">Date and time
                                </th>
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!