EasyUI Forum
April 26, 2024, 12:22:06 PM *
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 / Re: Datalist Checkbox OnChange on: February 26, 2021, 08:48:06 AM
This onCheck is helpful but does not handle when the checkbox get's unchecked. Is there an event for that as well?

Thanks
Justin
2  General Category / EasyUI for jQuery / Datalist Checkbox OnChange on: February 22, 2021, 12:20:39 PM
How do i add an onChange handler for the checkbox on a datalist like this.

   $(function(){
      $('#dl').datalist({
         data: data,
         selectOnCheck: false,
         textField: 'item',
         valueField: 'value'
      });
   })
   

Thanks
Justin
3  General Category / General Discussion / Re: Hidden Column in Mobile Datagrid on: January 28, 2021, 01:41:27 PM
I found I could just include and value into the JSON row data and not reference a column and that worked to pass the data but not display the data.
4  General Category / General Discussion / Hidden Column in Mobile Datagrid on: January 28, 2021, 11:32:08 AM
Is it possible to make an invisible column in a mobile datagrid to store data that is valuable to the row but not needed on the UI itself?

Thanks
Justin
5  General Category / EasyUI for jQuery / Calendar Select Multiple Dates on: April 29, 2020, 08:50:45 AM
Is there a way to make the calendar control allow selecting of multiple dates?  I'm looking to do something like this.

http://jsfiddle.net/7613s2hu/2/?utm_source=website&utm_medium=embed&utm_campaign=7613s2hu

Thanks
Justin
6  General Category / EasyUI for jQuery / Re: Get List of Open Windows on: March 23, 2020, 02:17:34 PM
Jarry

That is only part of what i'm looking for.  The other part is a list of ID's of window objects themselves that exist.

Thanks
Justin
7  General Category / EasyUI for jQuery / Get List of Open Windows on: March 17, 2020, 11:20:55 AM
Is there a way to get a list of open windows?  I need to look through the open windows to see if a window is already open or not.

Thanks
Justin
8  General Category / EasyUI for jQuery / Re: Change Dialog Contents on: October 11, 2012, 06:28:08 PM
Thanks that solved it!!!

Justin
9  General Category / EasyUI for jQuery / Re: Change Dialog Contents on: October 11, 2012, 06:01:52 PM
I had just figured out that if I do this behind my link it works the first time.

$('#winID4').panel('open').panel('refresh','/admin/inputs/transactionsinput.html?winID=winID4&action=first');

However when I run the same bit of code following my first refresh I get the following error in firebug

Timestamp: 10/11/2012 7:49:39 PM
Error: TypeError: $.data(_1a3, "panel") is undefined
Source File: http://test.mysite.com/public/js/jquery.easyui.min.js
Line: 2054

Am I doing something wrong?
10  General Category / EasyUI for jQuery / Change Dialog Contents on: October 11, 2012, 10:33:15 AM
I would like to change the contents of a dialog via a link button.  Is there a good way to change the contest of a dialog without closing the dialog and opening a new one?

Thanks
Justin
11  General Category / EasyUI for jQuery / Datagrid onClickRow event on: October 02, 2012, 06:49:52 AM
Is there a way to get the event for an onClickRow of a datagrid.  I want to override how the click is handled but i cannot detect keydowns and such.  Here's what I would like todo for instance but e is not sent in to this event like it is for the onRowContextMenu event.

onClickRow: function(rowIndex, rowData){
            debugger;
            if(!e.ctrlKey){
                $('#gridMain').datagrid('unselectAll');
            }
            $('#gridMain').datagrid('selectRow', rowIndex);
        }
12  General Category / General Discussion / $.messager.progress Update on: September 28, 2012, 02:49:26 PM
How can I manually set the amount of progress displayed for a $.messager.progress progress bar?

Thanks
Justin
13  General Category / EasyUI for jQuery / opts.view.render is undefined on: September 20, 2012, 03:45:24 AM
I am trying to build an dynamic grid via javascript that uses virtual scrolling.  I can get the grid on screen with columns etc. but following the fetch of the rows for the grid i receive the error:

Error: TypeError: opts.view.render is undefined
Source File: http://test.schedulewerks.com/js/jquery.easyui.min.js
Line: 6881

Here's my setup code for the grid.

function Home_BuildGrid(tbl, cols){
   var w = $(document).width()-114;
   var h = $("#westButtons").height()+32;
   
   $('#main').append('<table id="gridMain"></table>');
   $('#gridMain').datagrid({
      view: 'scrollview',
      rownumbers: false,
      singleSelect: true,
      autoRowHeight: false,
      pageSize: 100,
      striped: true,
      loadMsg: true,
      columns: cols,
      width: w,
      height: h,
      url: '/admin/output/fetch?tbl='+tbl,
      onDblClickRow: function(rowIndex, rowData){
         Home_OpenInput(rowData);
      }
   });
}


Thanks
Justin
14  General Category / EasyUI for jQuery / Re: Resize West Layout on: August 13, 2012, 08:58:20 AM
Worked like a charm.  Thank you so much.

Justin
15  General Category / EasyUI for jQuery / Resize West Layout on: August 10, 2012, 07:49:33 AM
All,

I have a layout based on demo/layout.html file.  I'm trying to figure out how to programmatically resize the west portion of the layout and then have the center portion auto resize accordingly.  Can someone point me in the right direction?

Thanks
Justin Will
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!