EasyUI Forum
December 01, 2025, 02:49:23 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 / General Discussion / Re: How can pass extra data when submit a form on: January 07, 2013, 10:12:37 PM
I using this code and it's work.  Smiley

$.post('127.0.0.1/data_save',
{
   Code : $('#position_text_code').val(),               
   Name : $('#position_combogrid_name').combogrid('getValue'),
   Address : $('#position_text_address').val()
}, function(result)
{
      $("#loading").html();
      fcn_datagrid_loadData();
});
2  General Category / General Discussion / Dependent Combogrid on: January 07, 2013, 10:04:21 PM

Hi all...

I use this code to connecting two combogrid and it's work.

$('#id_combogrid').combogrid('grid').datagrid('load',
 {
     position: $('#position_combogrid').combogrid('getValue'),
         
 });
3  General Category / EasyUI for jQuery / Re: How to set height of ComboBox,please? on: July 20, 2012, 02:03:03 PM
$(function()
{
  $('#tambahbarang_kondisi_text').combobox
  ({ 
       url:'<? echo base_url()."index.php/tambahbarang/fcn_kondisibox_load";?>', 
       valueField:'Id',  textField:'Id', panelHeight:65
  });
            
});
4  General Category / EasyUI for jQuery / Re: Upload file on: June 27, 2012, 08:29:10 PM
#Kepet, ora ono sing jawab jer...!! (djwb sdri)#

1.  create a new folder eg. uploads
2.  create file index.html
3.  file style.css
4.  file upload.js
5.  file upload.php

look at the attachment..

regards,
chuck noris
5  General Category / EasyUI for jQuery / Upload file on: June 26, 2012, 12:26:01 AM
Dear all,

How can upload file with jquery easy ui.. Huh

Regards....
6  General Category / EasyUI for jQuery / Re: how to link the two combobox..?? on: May 22, 2012, 05:39:49 AM
$('#job_text_origin').combogrid
      ({ 
         url:'https://127.0.0.1/live_planning/index.php/job/fcn_job_getcity', 
         idField:'city_id',  textField:'city_name',  mode:'remote', fitColumns:true,
         columns:
         [[
            {field:'city_id',title:'Id',width:25},
            {field:'city_name',title:'City',width:100}
         ]],
         
         onSelect:function(row) {
            $link=$('#job_text_origin').combobox('getValue');
                 //Autocomplete job_text_origin address
               $('#job_text_originaddress').combogrid
               ({
                  panelWidth:600, 
                  url:"https://127.0.0.1/live_planning/index.php/job/fcn_job_getaddress/"+$link,
                  idField:'site_id', textField:'site_address',  mode:'remote', fitColumns:true,
                  hasDownArrow:false,
                  columns:
                     [[
                        {field:'site_id',title:'Id',width:20},
                        {field:'site_address',title:'Address',width:390}
                     ]]
                   
               });
               //end autocomplete
         }
         
      });
7  General Category / EasyUI for jQuery / how to link the two combobox..?? on: May 21, 2012, 06:33:55 AM
Hi all,

I have two combobox, there are origin and address.
My problem is how can display combobox address based on selected orgin.


Regards.  Smiley
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!