EasyUI Forum
May 15, 2024, 03:05:21 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: 1 ... 5 6 [7] 8 9 10
 61 
 on: December 21, 2023, 10:49:51 PM 
Started by kimmansu - Last post by kimmansu
I urgently resolved it as follows.
Code:
<div class="div_input2" style="flex:2;">
<label class="textbox-label textbox-label-top" style="text-align: left;">챔버 종류</label>
<div class="easyui-radiogroup mChamberType" type="text"
      data-options="labelPosition: 'after', tipPosition: 'bottom', width: '50%', required: true, name:'chamber_type', value: 'HMH', data: ms.mold.chamberType, onChange: function(nv, ov) { _inno.ms.mold.chgGradeOption('M', nv); }"></div>
</div>


if ( ms.mold.modRow.use_yn != "D" ) {
$('#formModMold .mMoldNo').textbox('readonly', true);
$('#formModMold .mChamberType').radiogroup({ "data": [ { "label": " HOT", "value": "HMH", "disabled": true }, { "label": " COLD", "value": "HMC", "disabled": true } ] });
} else {
$('#formModMold .mMoldNo').textbox('readonly', false);
$('#formModMold .mChamberType').radiogroup({ "data": [ { "label": " HOT", "value": "HMH", "disabled": false }, { "label": " COLD", "value": "HMC", "disabled": false } ] });
}


Is there any better way?
Or I'm curious about how to extend the method.


 62 
 on: December 21, 2023, 07:18:05 AM 
Started by kimmansu - Last post by kimmansu
HI jarry.

I want to dynamically disable radiogroup using JavaScript.
However, the disable method does not exist.
Is there any other way?

ver : EasyUI for jQuery 1.10.17

thank you.

 63 
 on: December 12, 2023, 08:33:11 PM 
Started by Wojak - Last post by jarry
The combobox component can be attached to the toolbar. Please refer to the code below. Make sure to download the latest version.
Code:
var toolbar = [{
text:'Add',
iconCls:'icon-add',
handler:function(){alert('add')}
},{
text:'Cut',
iconCls:'icon-cut',
handler:function(){alert('cut')}
},'-',{
text:'Save',
iconCls:'icon-save',
handler:function(){alert('save')}
},'-',{
type:'combobox',
data:[{value:'1',text:'text1'},{value:'2',text:'text2'}],
editable:false,
onChange:function(value){
alert(value)
}
}];

 64 
 on: December 06, 2023, 03:26:59 PM 
Started by Wojak - Last post by Wojak
Hi,
Is there a better way to create toolbar with combobox as array then this?
Code:
var toolbar = $('<div style="padding:2px 4px"></div>').appendTo('body');
var db = $('<input>').appendTo(toolbar);
db.datebox();
var cb = $('<input>').appendTo(toolbar);
cb.combobox();

$('#dg').datagrid({
    toolbar:toolbar
})

I have made something like this, but it only works for a non easyui
Code:
{ text: 'Filter: <select id="test"><option value="1">1</option><option value="2">2</option></select>' }

Also in datagrid code i found that every thing in array that is not a "-" it mades as .linkbutton


 65 
 on: December 01, 2023, 08:17:09 AM 
Started by smz440 - Last post by smz440
Hi, Jarry

I'm very happy to hear your answer.

Thank you very much!

 66 
 on: December 01, 2023, 01:08:56 AM 
Started by smz440 - Last post by jarry
All the major browsers including IE11 are compatible with easyui package.

 67 
 on: November 29, 2023, 02:11:13 AM 
Started by smz440 - Last post by smz440
I ran a lot of demo of newest easyui using IE11.
New feature like drawer ran without error.

So, I hope newest easyui still supports IE11.

Any advice or suggestion is helpful for me.

Thank you.

 68 
 on: November 28, 2023, 05:29:10 PM 
Started by smz440 - Last post by smz440
Our intranet web app still uses IE11 and we want to upgrade easyui in our web app.
Does newest version of Easyui for jQuery support IE11?
If no, which version is compatible for IE11?

 69 
 on: November 27, 2023, 08:20:58 AM 
Started by don - Last post by don
When I use the 'tab' key from within the last cell/column in a row, I want the focus to go to the first cell of the next row. Currently the focus jumps outside the DataGrid entirely. Any suggestions?

 70 
 on: November 22, 2023, 03:28:41 AM 
Started by Aod47 - Last post by Aod47
Thank you every one. I got temporary solution  Grin by using tag span wrap textbox and bind context menu to span.

Code:
        $('#textbox1span').bind('contextmenu',function(e){
            e.preventDefault();
            $('#mm').menu('show', {
                left: e.pageX,
                top: e.pageY
            });
        });

Pages: 1 ... 5 6 [7] 8 9 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!