EasyUI Forum
May 14, 2024, 10:26:48 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
46  General Category / General Discussion / Re: Plugin for JEasyUI on: January 19, 2013, 12:53:04 PM
Good work Everton, Congrats!
47  General Category / Bug Report / Re: Window H/Centered in FF & JeasyUI 1.3.1 on: October 10, 2012, 11:58:40 AM
Sorry, I say centered vertically.
48  General Category / Bug Report / Window H/Centered in FF & JeasyUI 1.3.1 on: October 10, 2012, 06:13:08 AM
Hello:

jQuery EasyUI 1.3.1 with Mozilla FireFox 15.9 or 16.0 this windows dont show centered horizontally, in Chrome or IE 8 work fine.
With jQuery EasyUI 1.3.0 work fine in FF.

Code:
<div id="#fm_login" class="easyui-window" title="Login" iconCls="icon-login"  collapsible="false" minimizable="false" maximizable="false" closable="false" style="width:350px;height:auto;padding:5px;background:#D8D8D8">
  <form id="fm_login" method="POST"  ACTION="Sys_users/Login">     
    <br>
    <div class="fitem"> 
      <label>Usuario:</label> 
      <input name="q_usr_id" > 
    </div>         
    <div class="fitem"> 
      <label>Clave:</label> 
      <input name="q_usr_key" TYPE=PASSWORD> 
    </div>         
    <div id="dlg-buttons"  align="center"> 
      <br>  
      <a href="#" class="easyui-linkbutton" iconCls="icon-ok" style="text-align:center;" onclick="loginSubmit()">Ingresar</a>       
    </div>     
  </form>
</div> 
</body>

49  General Category / General Discussion / Re: Plug in for jquery-easyui on: September 20, 2012, 04:52:14 AM
Open the demos with Firebug in Firefox or Javascript Console in Chrome, view the JS source code and copy and paste.
50  General Category / General Discussion / Plug in for jquery-easyui on: September 19, 2012, 04:09:33 AM
Look this plugin for jeasyui:

http://evertonsena.com/site/trabalhos/content-all-comcontent-views/plugin-para-jquery-easyui.html

51  General Category / EasyUI for jQuery / Re: Grid OnLoadError on: September 18, 2012, 10:18:07 AM
Ok Stworthy,  thanks! 
52  General Category / EasyUI for jQuery / Re: Grid OnLoadError on: September 18, 2012, 05:11:07 AM
Ok, when I try to load a Datagrid and a database error happen in PHP, how to send and receive the database error message for show it in UI?

53  General Category / EasyUI for jQuery / Grid OnLoadError on: September 17, 2012, 06:40:56 AM
Hello:

in Grid - OnLoadError how to make for receive an error message from the server?

thanks
54  General Category / EasyUI for jQuery / Re: Datagrid - Search fields in columns headers on: August 15, 2012, 09:03:02 AM
Ok Stworthy!

Work fine!!

Thank you!!!
55  General Category / EasyUI for jQuery / Re: Datagrid - Search fields in columns headers on: August 13, 2012, 05:22:28 AM
Stworthy,

Sorry, the missing   }); is an typo in the the forum message, but the concept is the same.
When I use any drop-down widget in a column header (combo, combobox, combogrid, date input), this dont work correctly. I think that use it this feature will give more functionallity for data filtering (local or remote) to JQuery EasyUI (BTW a great Javascript framerwork).

thanks
56  General Category / EasyUI for jQuery / Datagrid - Search fields in columns headers on: August 10, 2012, 09:20:57 AM
Hello,

In a DataGrid I want to put search fields in each header .

I try this:

Code:
<table id="g-cus" title="Data" class="easyui-datagrid" style="width:auto;height:auto;"
url="../php/go.php?action=G"
fitColumns="true" singleSelect="true">
<thead>
  <tr>
    <th field="lastname" width="60"  sortable="true">Last Name<br />
<input id="q_lastname" placeholder="Input Last Name" style="width:280px;border:1px solid #ccc"></th>
        <th field="firstname" width="60"  sortable="true">First Name<br />
<input id="q_firstname" placeholder="Input First Name" style="width:280px;border:1px solid #ccc"></th>
        <th field="q_state" width="60"  sortable="true">State<br />
<select id="cg-state" name="state" style="width:200px;"></select></th>
  </tr>
</thead>
</table>
<script>
 $(function(){ 
    $('#cg-state').combogrid({
      panelWidth:450,
      idField:'state_id',
      textField:'state_name',
      url:'../php/states.php?action=G',
      mode:'remote',
      columns:[[         
      {field:'state_id',title:'ID',hidden: true, width:30} ,       
      {field:'state_name',title:'Name',width:320}         
      ]]
    }); 
</script>

For the input text fields work fine, but for the combogrid (or a common select combobox) don't drop-down the options.
Seems that the container space in the header is insufficient for this.
How could I solve it?

thanks

 
57  General Category / EasyUI for jQuery / Placeholder in combogrid on: August 07, 2012, 03:40:53 PM
Hello,

Is there any way to put a placeholder (input prompt) in a Combogrid?

thanks
58  General Category / General Discussion / Minimiza a window on: August 05, 2012, 07:04:42 AM
When I minimize a window, does it go? Is there a way to get it to stick to the bottom of the main application window?

Thanks!
59  General Category / EasyUI for jQuery / Re: Datebox and Masked input on: July 27, 2012, 05:53:09 AM
Work fine!
Thanks
60  General Category / EasyUI for jQuery / Datebox and Masked input on: July 26, 2012, 08:45:01 AM
Hello:

How to combine datebox with masked input like this:

http://digitalbush.com/projects/masked-input-plugin/

example:

$('#mydate').datebox({  required:true }).mask("99/99/9999",{placeholder:" "});

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!