EasyUI Forum
May 09, 2024, 05:30:56 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 5 6
31  General Category / General Discussion / Re: Improvement for datagrid - Download data in excel or xml format on: August 04, 2014, 07:11:16 AM
Hi,

Supposing you have the data in your datagrid also serverside in a database or so, it's easier to use a library as phpexcel for this. I have very good results with it and also can take care of styling the excel file with this.

This is no a problem... I use phpexcel too...

My requeste is an idea to have this functionality in the framework.. Nothing more..

If the team developers don't want it, I continue to use the phpexcel class...

32  General Category / General Discussion / Re: Improvement for datagrid - Download data in excel or xml format on: August 01, 2014, 05:56:27 AM
Ok I know this function. But in my opinion can be more professional to have a native function that export into Excel file...
33  General Category / General Discussion / Improvement for datagrid - Download data in excel or xml format on: July 30, 2014, 06:39:12 AM
Hello sworty,
can be an interesting feature if you can build the function to download the entire datagrid in a excel or xml file .

I know there are a lot of tool in php to do this, but in my opinion can help many developers...

What you think?
34  General Category / EasyUI for jQuery / Re: Dynamic data option in filter datagrid on: May 16, 2014, 02:50:37 AM
Thanks!
35  General Category / EasyUI for jQuery / Re: Dynamic data option in filter datagrid on: May 16, 2014, 12:29:35 AM
The scenario, of my case , is this:
- I have a datagrid with some medical results and in this datagrid I defined a personal comands to manage the data (update/delete/standby);
- each columns have a filter and one have combobox filter . The grouped values, of this combobox, are loaded from a php script (a dynamic value)
 

For example: if I show the medical result , selected from a value defined in the combobox , and then I deleted all results , I want to reload the filter values of the combobox. So the system show me the remaining possible values of filter loaded from a php script.

The question is: how I can force the reload of the combobox filter?
36  General Category / EasyUI for jQuery / Re: Dynamic data option in filter datagrid on: May 14, 2014, 06:54:37 AM
stworthy?
37  General Category / EasyUI for jQuery / Re: combobox problem,load data on: May 13, 2014, 12:41:13 AM
In the url, the script file return a json answer?
38  General Category / EasyUI for jQuery / Re: Dynamic data option in filter datagrid on: May 13, 2014, 12:20:00 AM
Ok I need a vacation....

A last question: if I want to reload the data in the combobox after I reset the filter (selecting the option 'All')?

This is to update the possibile value of filter..

Thanks
39  General Category / EasyUI for jQuery / Re: Dynamic data option in filter datagrid on: May 12, 2014, 12:46:08 AM
stworthy can u help me?
40  General Category / EasyUI for jQuery / Dynamic data option in filter datagrid on: May 09, 2014, 07:09:25 AM
Hello to all,
when we define the filter in datagrid we also have to define the value will be present in a combobox filter
Code:
$('#laboratory_result').datagrid({remoteFilter:true}); 

$('#laboratory_result').datagrid('enableFilter',[
{
field:'type_of_result',
               type:'combobox',              
               options:{
                   panelHeight:'auto',                  
                   data:[ {value:'',text:'All'},
                    {value:'Check positive control - Matching passed',text:'Check positive control - Matching passed'},
                    {value:'Check positive control - Matching failed',text:'Check positive control - Matching failed'},
                    {value:'Get genotype data',text:'Get genotype data'},
                    {value:'Sample ID not found',text:'Sample ID not found'},
                    {value:'UNDETERMINED/OMITTED',text:'UNDETERMINED/OMITTED'}
                    ],
                 
                   onChange:function(value){
                       if (value == ''){
                           $('#laboratory_result').datagrid('removeFilterRule');                            
                           
                       } else {
                           $('#laboratory_result').datagrid('addFilterRule', {
                               field: 'type_of_result',
                               op: 'equal',
                               value: value
                           });                          
                       }
                        $('#laboratory_result').datagrid('doFilter');
                   }
               }
           },
           {
               field:'sample_number',
               type:'text',
               options:{precision:1},
               op:['equal','beginwith']
           },
           {
               field:'genotype_old',
               type:'text',
               options:{precision:1},
               op:['equal','beginwith']
           },
           {
               field:'genotype',
               type:'text',
               options:{precision:1},
               op:['equal','beginwith']
           }

       ]);
When we set the values for a combobox filter the problem is how to implement a function that retrive all element for the combobox
At the moment I created a php script that return to me a json string with the grouped values
The question is easy: how can I integrate all?

who can help me?
41  General Category / General Discussion / Re: feature request : Pivot table on: April 01, 2014, 06:19:14 AM
Hope soon!

It's very usefull
42  General Category / EasyUI for jQuery / Re: Prompt message if some value change in a form in different tab on: April 01, 2014, 03:13:10 AM
I've to work with the cache?
43  General Category / EasyUI for jQuery / Re: Prompt message if some value change in a form in different tab on: March 28, 2014, 03:08:30 AM
I explain my intention:
in the attached image you see a value at "Picogreen" field.
If I change in a new value (ex: 30) , i want that the system notify me that value is changed if I switch in other tab without saving.

That's all
44  General Category / General Discussion / feature request : Pivot table on: March 28, 2014, 01:40:58 AM
Hi,

in my work  I need to use , many times, the pivot table.
I think  can be a great idea to implement this function in easyui.

What you think stworthy?

Thx in advance

45  General Category / EasyUI for jQuery / Prompt message if some value change in a form in different tab on: March 27, 2014, 09:21:38 AM
Hello to all,
I've a multi -tab and, for each tab, a form with some value loaded from the server (attached the image).

My intention is: if some user changes some data in a form and then change tab without saving, the system notify that some value change and the system propose the possible actions before to contine

How can I implement it ?

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