EasyUI Forum
April 29, 2024, 12:36:21 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  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!
32  General Category / General Discussion / Re: Any plans for TagBox? on: August 10, 2016, 07:54:58 PM
 Grin Cool!  Grin
33  General Category / General Discussion / Re: easyUI Panel mask feature (ex: for disabling all activities on a panel) on: December 09, 2015, 10:53:59 AM

https://code.google.com/p/jquery-loadmask/
34  General Category / General Discussion / Re: Pivot Grid on: December 17, 2014, 04:58:18 AM
Stworthy,

You're right. Great new component!

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
36  General Category / EasyUI for jQuery / Re: Adapt the messager window size to the content on: November 23, 2013, 03:09:52 PM
stworthy,

Thanks for your answer. I use the messager component for display the result of the remote validation.
This send a text with multiples error messages in multiples lines.
What is the best way for show this type of information ?

Regards
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>")

Code:
	$.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

Code:
	<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>   

Code:

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

40  General Category / General Discussion / Re: Some improvements on: October 30, 2013, 06:16:34 AM
stworthy,

Very good example of filter in a grid.
How to use it with remote searching?

thanks
41  General Category / General Discussion / Re: Tags component on: June 24, 2013, 02:43:10 PM
Yes,

Something like this: http://documentcloud.github.io/visualsearch/

best regards
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
43  General Category / EasyUI for jQuery / How to change the color in a disabled datebox on: May 30, 2013, 02:47:07 PM
Hello,

I want to know how to change the color for a disabled datebox

thanks


44  General Category / EasyUI for jQuery / Re: Set disabled a datetimebox on: May 27, 2013, 05:49:47 PM
I found it,

Code:
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?
45  General Category / EasyUI for jQuery / Set disabled a datetimebox on: May 27, 2013, 02:39:22 PM
Hello,

I want to set a datetimebox as disabled / enabled (depending of other control)

Can I see some example?

thanks
Pages: 1 2 [3] 4 5
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!