EasyUI Forum
October 16, 2025, 08:13:46 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Re: Reformatting/parsing datebox in popup form on: October 09, 2013, 12:51:57 PM
Debes extender la funcionalidad utilizando $.extend(.......). Abajo dejo el código para que lo pruebes. Saludos

PD: Recuerda reemplazar el caracter "/" por "-" en caso de que lo utilices de esa forma.

$.extend($.fn.datebox.defaults,{
   formatter:function(date){
      var y = date.getFullYear();
      var m = date.getMonth()+1;
      var d = date.getDate();
      return (d<10?('0'+d):d)+'/'+(m<10?('0'+m):m)+'/'+y;
   },
   parser:function(s){
      if (!s) return new Date();
      var ss = s.split('/');
      var d = parseInt(ss[0],10);
      var m = parseInt(ss[1],10);
      var y = parseInt(ss[2],10);
      if (!isNaN(y) && !isNaN(m) && !isNaN(d)){
         return new Date(y,m-1,d);
      } else {
         return new Date();
      }
   },
});
2  General Category / EasyUI for jQuery / Re: Modal window outside a Tabs (Iframe) on: September 30, 2012, 03:36:30 PM
Can someone help me?
3  General Category / General Discussion / Re: Edit rows in a datagrid full on the server side on: July 13, 2012, 11:00:50 AM
Thank you Stworthy. But, Could you give me an example?.
4  General Category / General Discussion / Re: As I can use the up, down, left or to right in a datagrid? on: July 09, 2012, 02:06:14 PM
Great!!... Thank you very much. It's usefull
5  General Category / General Discussion / As I can use the up, down, left or to right in a datagrid? on: July 03, 2012, 08:22:42 AM
As I can use the up, down, left or to right in a datagrid?

Gracias por su ayuda
6  General Category / General Discussion / Save changes to the server side of a row in datagrid edited. on: July 03, 2012, 08:20:34 AM
As I can save changes to the server side of a row in datagrid edited.

Thanks for your help
7  General Category / General Discussion / Edit rows in a datagrid full on the server side on: July 03, 2012, 08:17:45 AM
I need to know how to record changes in a datagrid on the server. I have a datagrid with 40 rows of data, which I can edit them, but to save the changes of all ranks edited with a single button, not for each row as shown in the tutorial.

I will be very grateful for your help.
8  General Category / EasyUI for jQuery / Re: How I can set the day Monday as the first day in a datebox? on: May 14, 2012, 06:13:20 PM
Thanks for your help, but not working. I would greatly appreciate if you were more specific with your help. I am new to this. Thank!!!
9  General Category / EasyUI for jQuery / Re: Calendar control presents problems in October on: May 04, 2012, 08:20:05 AM
Thanks Kevin, you're right. The problem occurs only with certain browsers (F11.0 and IE 9.0.8112.16421) I have no problem with Chrome. Even directly from the site www.jeaseyui.com me the problem arises. Attached screen shot.

And sorry for the English, not handling well.
10  General Category / Bug Report / Calendar control presents problems in October on: May 01, 2012, 04:52:12 PM
Calendar control presents problems in October. The dates are out of line.
11  General Category / EasyUI for jQuery / How I can set the day Monday as the first day in a datebox? on: May 01, 2012, 04:45:26 PM
How I can set the day Monday as the first day in a datebox?. I tried FirstDay: 1, but does not work. Surely I do something wrong.

Thank!!
12  General Category / EasyUI for jQuery / Calendar control presents problems in October on: May 01, 2012, 04:41:33 PM
Calendar control presents problems in October. The dates are out of line

How I can fix it?
13  General Category / EasyUI for jQuery / Modal window outside a Tabs (Iframe) on: May 01, 2012, 04:29:32 PM
Hi.

What I can do to make a modal window that opens into an Iframe or Tabs, This window is opened outside of Iframe or Tabs?.

Attached picture for a better understanding.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!