Works ;-)
EasyUI
| Home | Help | Search | Login | Register |
|
11
on: October 20, 2025, 01:17:35 AM
|
||
| Started by jega - Last post by jega | ||
|
Works ;-)
|
||
|
12
on: October 11, 2025, 05:04:55 AM
|
||
| Started by jaimi - Last post by jarry | ||
|
Please override the 'blur' event handler.
Code: $('#ROL_DUR').timespinner({ |
||
|
13
on: October 09, 2025, 03:05:00 AM
|
||
| Started by kayjay - Last post by kayjay | ||
|
Of course - me bad.
![]() |
||
|
14
on: October 09, 2025, 02:15:15 AM
|
||
| Started by kayjay - Last post by jarry | ||
|
Please set the 'text-align:right' css style for the toolbar.
Code: <div id="tb" style="text-align: right;"> |
||
|
15
on: October 06, 2025, 09:46:04 AM
|
||
| Started by kayjay - Last post by kayjay | ||
|
In this example I would like the toolbar to appear on the right hand side of the datagrid but I just cannot see how.
Can anybody point me in the right direction? Many thanks <table id="tt" class="easyui-datagrid" style="width:600px;height:250px" url="data/datagrid_data.json" title="DataGrid with Toolbar" iconCls="icon-save" toolbar="#tb"> <thead> <tr> <th field="itemid" width="80">Item ID</th> <th field="productid" width="80">Product ID</th> <th field="listprice" width="80" align="right">List Price</th> <th field="unitcost" width="80" align="right">Unit Cost</th> <th field="attr1" width="150">Attribute</th> <th field="status" width="60" align="center">Stauts</th> </tr> </thead> </table> <div id="tb"> <a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="javascript:alert('Add')">Add</a> <a href="#" class="easyui-linkbutton" iconCls="icon-cut" plain="true" onclick="javascript:alert('Cut')">Cut</a> <a href="#" class="easyui-linkbutton" iconCls="icon-save" plain="true" onclick="javascript:alert('Save')">Save</a> </div> |
||
|
16
on: September 06, 2025, 03:15:57 AM
|
||
| Started by jaimi - Last post by jaimi | ||
|
I have the following html:
<div class="col-md-3"> <div class="form-group"> <input class="easyui-timespinner form-control" style="width:100%;" id="ROL_DUR" label="Arbeitszeit:" labelPosition="top" required> <div class="invalid-feedback">Geben Sie die Dauer der Durchführung ein!</div> <!-- <div class="valid-feedback">Die Dauer der Durchführung wurde eingetragen</div> --> </div> </div> in js I tried this: $('#ROL_DUR').timespinner({ showSeconds: false ,value: '' }); const cInputROL_DUR = $('#ROL_DUR').timespinner('textbox'); console.log("textbox type:", cInputROL_DUR.prop("tagName"), "id:", cInputROL_DUR.attr("id")); console.log("--- cInputROL_DUR - length: " + cInputROL_DUR.length); if (cInputROL_DUR.length) { $('#ROL_DUR').timespinner('textbox').on('blur', function() { console.log(">>> blur handler wurde getriggert"); // Test const newValue = $('#ROL_DUR').timespinner('getValue'); console.log("--- blur on ROL_DUR: " + newValue); and this: const realInput = $('#ROL_DUR').timespinner('textbox')[0]; // echtes <input> if (realInput) { realInput.addEventListener('blur', function() { const newValue = $('#ROL_DUR').timespinner('getValue'); console.log(">>> blur feuert! Wert:", newValue); nothing works. How can I implement a eventListener when the field is left by the cursor? |
||
|
17
on: September 04, 2025, 11:06:28 AM
|
||
| Started by Coder - Last post by Coder | ||
|
TriStateBox is a jQuery EasyUI component that renders a three-state selector (1/0/null) inside a standard textbox shell.
It preserves EasyUI labeling, sizing, and form behavior while replacing text input with three equal-width buttons. Values map to Y, N, and ? with customizable labels via symY, symN, and symU. Public API: getValue(), setValue(v), clear(), reset(), enable(), disable(), resize(w), destroy(). It normalizes JSON inputs (1, 0, null, '1', '0') and fires onChange(oldVal, newVal) on state changes. Code: $('#test').tristatebox({Code: $(`#test2`).tristatebox({ |
||
|
18
on: August 14, 2025, 06:38:52 PM
|
||
| Started by jega - Last post by jarry | ||
|
Please set the 'showEvent' property value to 'click'. This means that the menu won't show until the 'click' event is triggered.
Code: <a href="javascript:void(0)" class="easyui-menubutton" |
||
|
19
on: August 12, 2025, 08:16:38 AM
|
||
| Started by jega - Last post by jega | ||
|
Hi Jarry.
It's excatly the same i do. Problem is, when you go to the site on an iphone, and click on menu button, the three dots, it open and close the menu again. It doesn't work on iphone/ipad. Have tried it on both Safari and Chrome, same error Try your demo/mobile demos/menu/basic. Same problem. Can't show menu on iphone/ipad |
||
|
20
on: August 12, 2025, 12:00:52 AM
|
||
| Started by Coder - Last post by jarry | ||
|
This documentation is available now. Please download it from that link.
|
||