Show Posts
|
Pages: 1 2 [3] 4 5
|
31
|
General Category / General Discussion / TEXTBOX Disabled color
|
on: May 28, 2017, 10:04:24 AM
|
Hi,
I've the next line <Input class = "easyui-textbox" editable = "false" data-options="buttonIcon:'fa fa-search fa-lg'">
How can I change the textbox background color for editable = "false" ..?
Thanks!
|
|
|
35
|
General Category / General Discussion / Pivot Grid
|
on: December 16, 2014, 08:07:58 AM
|
Hello,
The Pivot Grid Extension is cool, congrats! but dont work well. In Chrome the example don't load the data correctly and on FireFox the data are loaded but when I click, all texts show 'Undefined'.
Reggards
|
|
|
37
|
General Category / EasyUI for jQuery / Adapt the messager window size to the content
|
on: November 22, 2013, 04:55:29 AM
|
Hi, How to adapt de messager window size to the content? I use this to show a text with many lines (example: "line 1...<br> line2....<br> line3....<br> line4....<br>") $.messager.show({ title:'Warning! Errors!', msg:result.msg, showType:'show', style:{ right:'', top:document.body.scrollTop+document.documentElement.scrollTop, bottom:'' } });
thanks
|
|
|
38
|
General Category / General Discussion / Re: Some improvements
|
on: November 13, 2013, 02:00:35 PM
|
stworthy,
great work!
May be you must to include this in the documentation:
"When use remote filtering the 'filterRules' parameter will be sent to remote server in JSON format"
Thanks!
|
|
|
39
|
General Category / General Discussion / Re: Some improvements
|
on: November 13, 2013, 05:13:03 AM
|
Hi, I'm using a button for make remote search. How I can make search while typing the text like local search? thanks <table id="g-tck" title="Tickets" class="easyui-datagrid" style="width:auto;height:auto;" url="<?PHP echo _URL_ ?>tickets/GetPage", toolbar="#tb1" pagination="true" fitColumns="true" singleSelect="true"> <thead> <tr> <th field="NAME" sortable="true">Customer</th> <th field="DATETIME_ADD" sortable="true">Date/Time</th> <th field="TITLE" sortable="true">Title</th> <th field="STATE" sortable="true">State</th> </tr> </thead> </table> <div id="tb1" style="padding:5px;height:auto"> <div> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-search" plain="true" onclick="doSearch()"></a> </div> </div>
<script type="text/javascript">
function doSearch(){ var q_filter = JSON.stringify( $('#g-tck').datagrid('options').filterRules ); $('#g-tck').datagrid('load',{ q_filter: q_filter });
}
$(function(){ var dg = $('#g-tck').datagrid({filterBtnIconCls:'icon-filter'}); dg.datagrid('enableFilter'); dg.datagrid('options').remoteFilter = true; });
</script>
|
|
|
42
|
General Category / General Discussion / Tags component
|
on: June 23, 2013, 01:49:23 PM
|
Hello,
If a wish list is open for next versions, a Tags component would be nice in combination with a autocomplete component (like combogrid).
Best Regards
|
|
|
44
|
General Category / EasyUI for jQuery / Re: Set disabled a datetimebox
|
on: May 27, 2013, 05:49:47 PM
|
I found it, function changeDS() { var Value; Value = $('#dt').datetimebox('getValue'); if (!$('#dt').prop('disabled')){ $('#dt').datetimebox({disabled:true,required:false }); } else{ $('#dt').datetimebox({disabled:false,required:true}); } $('#dt').datetimebox('setValue',Value); }
One question: Why the value is lost when set it to disabled?
|
|
|
|