EasyUI Forum
May 03, 2024, 11:56:11 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
1  General Category / EasyUI for jQuery / Re: Latest Chrome Causing Ajax Form Issues on: June 10, 2020, 11:03:05 PM
Hi,

Maybe It will be fixed soon :
https://bugs.chromium.org/p/chromium/issues/detail?id=1084874

Edit :
I've tried 83.0.4103.97 (Build officiel) (OS X 10.13.6) but issue is still there...

JG
2  General Category / EasyUI for jQuery / Re: Problem with DataGrid Virtual Scroll View with Detail Rows on: September 10, 2018, 08:30:29 AM
Thanks for your answer.

I found the problem : if I use frozen options on "thead" of the data-grid, "datagrid-view2" div is on a wrong position (I don't understand why...).

Here's part of my original code :
Code:
	<table id="dgstats_pdf" style="width:1000px;height:558px">
        <thead data-options="frozen:true">

Here's the result :

Details ("testaa (Shop)") appear on a wrong place, at the right of the data-grid.

If I remove "data-options="frozen:true"" from thead, everything is fine.

Perhaps It can be usefull to know...

Thanks again for helping me.

JG
3  General Category / EasyUI for jQuery / Re: Problem with DataGrid Virtual Scroll View with Detail Rows on: September 09, 2018, 11:30:35 PM
In my datagrid, I load data from remote script : inc_getpdfonjson.php (that returns json content).

rowData.compte is one of the values returned by inc_getpdfonjson.php in json format :
For ex. : "compte":"<a href=\"edit_user.php?id=6\">jgautier<\/a>"

When I load the datagrid, detailFormatter function fires for each rows and values are ok : console.log(rowData.compte) returns the right value (for ex. "<a href="edit_user.php?id=6">jgautier</a>").

But there's nothing in the datagrid-row-detail div of the row, details div are empty, like that :
Code:
<div class="datagrid-row-detail"> </div>

Thanks for your answer.

JG
4  General Category / EasyUI for jQuery / Problem with DataGrid Virtual Scroll View with Detail Rows on: September 09, 2018, 04:49:35 AM
Hi,

I try to use DataGrid Virtual Scroll View with Detail Rows, like in demo, but "datagrid-row-detail" divs are empty.

My code to load datagrid :
Code:
$('#dgstats_pdf').datagrid({
     
      view:scrollview,
      pageSize:100,
      autoRowHeight:false,
      url:'inc_getpdfonjson.php',
      queryParams: {
clientonly: true
},
     
      onBeforeLoad: function(param){
  // some stuff here
  },

      detailFormatter: function(rowIndex, rowData){
    console.log(rowData.compte);
                    return rowData.compte;
        },
           
      onLoadSuccess:function(){     
// some stuff here     
},

});


The "console.log(rowData.compte)" command returns the data I expect (from the json file).
But "return rowData.compte;" seems to do nothing : "datagrid-row-detail" div of each row remains empty when expanding.

If you need more code to understand, please let me know.

Thanks a lot.

JG
5  General Category / EasyUI for jQuery / Collapse problem since EasyUI 1.5.4.2 on: April 01, 2018, 01:17:14 AM
Hi,

(sorry for my poor english)

When I've upgraded form EasyUI 1.5.3 to 1.5.4.2, I've got a strange collapse behaviour on some of my panels.

I declare my "Tags" panel like that :

Code:
<div id="p4" class="easyui-panel panel_image panel_kw" title="Tags (30)" data-options="collapsible:true,collapsed:true,href:'ajax_getmediakwmenus.php?medid=517111&amp;formname=form1',iconCls:'icon-kw'" style="width:1100px;height:260px;padding:10px;background:#fafafa;"></div>		

On 1.5.3, everything is ok (look at the first screen cap) :
- at the beginning this panel is collapsed, and only the panel header is visible
- when the panel is expanded, the panel height is set to 260 px
- when the panel is collapsed again, the panel height returns to 0 (I mean : only the panel header is visible)

On 1.5.4.2 (or 1.5.4.4), there's a problem with height of the panel  (look at the second screen cap) :
- at the beginning this panel is collapsed, BUT the panel height is already set to 260 px (cf. screen capture)
- when the panel is collapsed again, the panel height remains set to 260 px

Is there something changed about panel's height settings ?
Do I miss something ?

Thanks a lot for your help.

JG

EasyUI 1.5.3 : Right height of "Tags" panel :


EasyUI 1.5.4.4 : Wrong height of "Tags" panel :
6  General Category / EasyUI for jQuery / Re: What's the best way to make a datalist dynamically filtered by textbox enter ? on: February 21, 2017, 06:13:25 AM
Perfect : thanks a lot.
JG
7  General Category / EasyUI for jQuery / Re: What's the best way to make a datalist dynamically filtered by textbox enter ? on: February 20, 2017, 08:31:59 AM
Add a searchbox component to the page. When typing on the searchbox and press ENTER key, search new dataset and call 'loadData' method to load new data into the datalist.

Thanks for your answer : it's a good way.

I should have precised something else : I'd like something like an autocomplete behavior.
Type "a", then "ar", then "are" - without press ENTER -, and datalist actualize itself in real time.

I did'nt find this function using searchbox.
Could it be possible with a simple textbox ?

Thanks again

JG
8  General Category / EasyUI for jQuery / What's the best way to make a datalist dynamically filtered by textbox enter ? on: February 19, 2017, 11:16:33 AM
Hello (and sorry for my bad english),

I use a datalist, and i'd like to add a textbox (or anything that can get text from user's keyboard) to be able to filter dynamically this datalist.

For ex.,
if you enter "a" in the textbox, datalist shows all items containing "a"
if you enter "ar" in the textbox, datalist shows all items containing "ar"
if you enter "are" in the textbox, datalist shows all items containing "are"
and so on...

What's the best way to do this using easyui ?
I just need some advices about the general procedure.

Thanks a lot,

JG
9  General Category / EasyUI for jQuery / Re: Add footer on portal panels ? on: November 22, 2014, 11:27:32 AM
Thanks.
JG
10  General Category / Bug Report / Re: Textbox browser's autofill on: November 22, 2014, 06:36:56 AM
Hello,

I've tried to use delay, but it doesn't seem to work.

JG
11  General Category / EasyUI for jQuery / Add footer on portal panels ? on: November 22, 2014, 02:58:29 AM
Hi,

is there a way to add a footer to a portal panel ?

thanks,

JG
12  General Category / Bug Report / Re: Textbox browser's autofill on: August 27, 2014, 12:33:52 AM
Thanks : I've understood now.

JG
13  General Category / Bug Report / Re: Textbox browser's autofill on: August 25, 2014, 03:19:59 AM
All right, thanks.
But what do you mean by "or wait a little time to create the text box components" ?

JG
14  General Category / Bug Report / Re: Textbox browser's autofill on: August 24, 2014, 09:56:24 AM
thanks for your answer, but I'm not sure that is the problem.

(my english is not very good, sorry...)

I talk about browser's autofill function : on a web page, when you fill some fields to login, the first time your browser asks you if you want it to keep and remember these values and automatically recover them next times. When you come back to the same page, form fields are automatically filled by the browser with stored values.

Since I use easyui textboxes in my login form, instead of standard html textfields, this function don't work correctly (using Chrome neither Safari on MacOS X).

Please tell me if I'm right or if I've misunderstood something.

thanks,

JG
15  General Category / Bug Report / Textbox browser's autofill on: August 23, 2014, 08:33:24 AM
Hi,

When I use textboxes inside my login forms, some browsers don't suggest to save/remember login and password as they do when I use standard textfields.
On MacOS, Firefox (30) works correctly, but Chrome (36.0.1985.143) don't, neither Safari (7).

thanks a lot for looking at this issue.

JG
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!