EasyUI Forum
April 28, 2024, 10:06:18 PM *
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
16  General Category / General Discussion / Re: [SOLVED] Multi Step Form Wizard with steps on: June 05, 2018, 05:28:15 AM
Hi,
A Multi Step Form Wizard is a sequential user interface, so step 3 can only be invoked after step 2, a Tab control dont work, required a controller
17  General Category / EasyUI for jQuery / Validating a cell to compare it another cell on: February 10, 2018, 09:36:26 AM
Hi,

I need to edit a cell on a datagrid and validate it for value be lower that previous field/column.

thanks
18  General Category / EasyUI for jQuery / Re: Conditional Cell Editing in Datagrid on: December 25, 2017, 03:39:35 PM
Thanks for you reply,

but, how to set conditional edit for one cell depending of the row data?

Example:
Grid for Pay
Column1: Pay Type (CASH, BANK, CREDITCARD, ...)
Column2: Bank Name (if Column1 Type is = 'BANK' set Cell Editing)
Column3: Amount

Best regards



19  General Category / EasyUI for jQuery / Conditional Cell Editing in Datagrid on: December 24, 2017, 01:23:53 PM
Hi,

How I can set conditional Cell Editing in a Datagrid?
I want enabled to Cell Editing when variable EditForm is true (and disbled when EditForm is false)

thanks
20  General Category / EasyUI for jQuery / Re: Datebox readonly on: December 16, 2017, 06:57:05 AM
Thanks stworthy!

21  General Category / EasyUI for jQuery / Datebox readonly on: December 15, 2017, 07:33:15 PM
Hello,

I've a datebox in readonly=true, when I change it to readonly=false for edit it the content become blank
please, see
http://jsfiddle.net/0hk1twng/167/

Thanks for advance
22  General Category / EasyUI for jQuery / Re: Datagrid updateRow Error on: December 15, 2017, 06:30:15 PM
Oh! My bad!

Thanks!
23  General Category / EasyUI for jQuery / Datagrid updateRow Error on: December 13, 2017, 05:08:51 PM
Hi,

I got the next code:

Code:
<table id="g-customers" class="easyui-datagrid" style="width:750px;height:165px"  url="myurl" singleSelect="true">  
<thead> 
<th field="Id" hidden="true">ID</th> 
<th field="Name" width="80">Name</th> 
</tr> 
</thead> 
</table>

...
...
...

function Update(){
var row = $("#g-customers").datagrid("getSelected");
var rowIndex = $("#g-customers").datagrid("getRowIndex", row);    
$('#g-customers').datagrid('updateRow',rowIndex,{Id: "60",Name:"John"});
}

In the line   $('#g-vtd').datagrid('updateRow',rowIndex,{Id: "60",Name:"John"});
I get the error:

Uncaught TypeError: Cannot read property 'Id' of undefined

thanks for advance

24  General Category / EasyUI for Angular / EasyUI for Angular ..? on: September 19, 2017, 11:53:44 AM
Hello,

EasyUI for Angular ..?
what is this?

Regards

25  General Category / EasyUI for jQuery / Tagbox autocomplete w/combogrid on: August 29, 2017, 09:14:35 AM
Hi,

two questions:

Can I to use a Tagbox with a combogrid for autocomplete ?

and can i set just one only item to fill a Tagbox?

thanks!
26  General Category / EasyUI for jQuery / Re: Visibility attribute in a Linkbutton on: August 16, 2017, 05:56:19 AM
Thanks Stworthy!
27  General Category / EasyUI for jQuery / Visibility attribute in a Linkbutton on: August 15, 2017, 06:37:46 PM
Hi,

How can I set the "visibility" attribute (visible or hidden) in a Linkbutton ?

Thanks!
28  General Category / EasyUI for jQuery / Tree component problem on: July 05, 2017, 02:01:14 PM
Hello,

Please, I need help. I'm testing the Tree component but nothing is showing

Code:
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<link rel="stylesheet" type="text/css" href="http://localhost:8080/rest-jui/static/js/themes/icon.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8080/rest-jui/static/js/themes/bootstrap/easyui.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8080/rest-jui/static/js/themes/color.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8080/rest-jui/static/js/themes/mp.css">

<script type="text/javascript"  src="http://localhost:8080/rest-jui/static/js/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/jquery.easyui.min.js"></script>
<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/locale/easyui-lang-es.js"></script>
<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/jquery.maskedinput-1.4.1.min.js"></script>

<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/mpjs.js"></script>
<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/plugins/DateFormatter/dateformatter.js"></script>
<script type="text/javascript" src="http://localhost:8080/rest-jui/static/js/jquery.blockUI.js"></script>

<script type="text/javascript">

$(function(){

$('#tt2').tree({
url: 'http://localhost:8080/rest-jui/rest/systree/todos',
method: 'GET'
});

});
</script>

</head>
<body >
<ul id="tt2"></ul>
</body>
</html>    



These data are returned from the server when I invoke it from the url  directly http://localhost:8080/rest-jui/rest/systree/todos

[{id: 1,text:'Node 1',state: 'closed',children:[{id: 11,text: 'Node 11'},{id: 12,text: 'Node 12'}]},{id: 2,text: 'Node 2', state: 'closed'}]

Thank for advance!
29  General Category / EasyUI for jQuery / Re: Sending form data in Json format on: July 03, 2017, 08:42:24 AM
Thanks!
30  General Category / EasyUI for jQuery / Sending form data in Json format on: July 01, 2017, 06:59:40 AM
Hi,

I want to send data from a form in Json format to server.
I use this:
Code:
$('#f-esp').form('submit', {
url : ....
contentType: 'application/json',
                dataType: 'json',
onSubmit : function(param) {
....

But, the HTTP Header send it
Content-Type:application/x-www-form-urlencoded

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!