EasyUI Forum
December 01, 2025, 05:16:25 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Load dinamycally datagrid when click a button on: April 04, 2013, 09:09:40 PM
Hi guys ,
I am having trouble to load dinamycally a datagrid when click a button , it seems data for sometime appears and disappears.I tried a tutorial to load dinamycally javascript but it doesn't work properlly.But i have seen the web developer of Easy UI load dinamycally datagrids and more components in the demo page , see the example here.
http://www.jeasyui.com/demo/main/index.php

Does anyone can tell me how they can load several times the same page or other without having troubles with javascript?
2  General Category / EasyUI for jQuery / Re: Performance problem large dataset datagrid detailview on: April 03, 2013, 05:59:48 PM
Well , i think you are obligated to devided the information in two parts at least.If they 100 , tekae only 50 by 50.

Other ideas which comes to my mind , it's that you have diferentes grids ,for example grid "a" and "b" then when you select one row at that event you load the data in the grid "b" .This is valid if subgrid processing it's too low.
3  General Category / General Discussion / Any plugin to print with Easy UI , bills? on: April 03, 2013, 05:36:36 PM
Hi guys,
I need some help of you , i need to know some kind of plugin to print bills in Easy UI.
4  General Category / General Discussion / Help with Easy UI for autoresize mobile application on: April 03, 2013, 01:55:55 PM
I have found an small problem when i resize EasyUI.I am tsting it if it's posible to make an small application for phones.If some of you have an example , it's welcome.

Thanks in advance.
5  General Category / General Discussion / Re: Help with Easy UI bar and Pie charts on: April 03, 2013, 10:24:04 AM
Thanks ............ Wink
6  General Category / General Discussion / Help with Easy UI bar and Pie charts on: April 02, 2013, 08:33:11 PM
Hello friends,
I need some example og Easy UI with bar and ie charts.
Thanks in advance.
7  General Category / EasyUI for jQuery / Re: Does anyone use Easy UI with google maps? on: March 31, 2013, 12:22:58 AM
I solved myself this doubt.If you are interested , yes , it's possible mix googlemaps with easy ui.It's cool..
It's so easy to integrate and great results at short time.
8  General Category / EasyUI for jQuery / Does anyone use Easy UI with google maps?(solved) on: March 30, 2013, 11:36:25 PM
I wonder if it's possible mix EASY UI with Google Maps for GIS applications.
9  General Category / General Discussion / How to empty a datagrid? on: June 06, 2012, 11:47:57 PM
I was adding rows to a datagrid but when i got last index i can't deleted.I am not using ajax only javascript.
sourcode:
$("#btn_remove").click(function(){
        var row = $('#tt').datagrid('getSelected'); 
         $("#tt").datagrid('deleteRow',row.id); //could be $("#tt").datagrid('deleteRow',1);//but not delete the first one
});

//adding row
 $("#btn_add").click(function(){
          cont++;
          $('#tt').datagrid('insertRow',{
                                    index: 0,   // index start with 0
                                    row: {
                                        id: cont,
                                        producto:'Aceite de oliva',
                                        precio:2.7,
                                        cantidad:5,
                                        total:13.5
                                    }
                                });
      });

Please help , i need delete each selected row.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!