Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all 82257 articles
Browse latest View live

Sort with thousands separador doesn’t work

$
0
0

Hi folks,

I haver to work with decimals (comma) and thousands ( dot) separators. I set the datatable to work with it And it works fine. But it does not work when the Number is smaller the 1000 and of course does not have thousand separators.

Numbers are
1.234,13
876,40
32,79
1.004,23

When I click column head to sort it Goes like this
1.004,23
1.234,13
32,79
876,40

Can anyone help?

Thanks in avance

Moises


Latest versions via npm ?

$
0
0

Hi!

I just checked my package.json for updates. For "datatables.net" there's a version "2.1.1" available, while recently it was "1.10.19" (which is still what on this home page presents).

Others like "datatables.net-bs4" used to be version "1.10.19", too. Now there's a "2.1.1" and even a "3.2.2" available. And also "datatables.net-buttons" as well as "datatables.net-buttons-bs4" have new 2.x versions available now.

Are the 2.x (and even 3.x) previews or is that a new visioning scheme? Which one should I use (for non-beta)?

Thanks
Karlo

Add Bearer ticket to server side Ajax call Using DataTable

$
0
0

Hello All,

This code i written for calling the web api of crm

var fetchxml = "<fetch mapping='logical' page='2' count='10' returntotalrecordcount='true' pagingcookie='%253ccookie%2520page%253d%25221%2522%253e%253caccountid%2520last%253d%2522%257bB8A19CDD-88DF-E311-B8E5-6C3BE5A8B200%257d%2522%2520first%253d%2522%257b475B158C-541C-E511-80D3-3863BB347BA8%257d%2522%2520%252f%253e%253c%252fcookie%253e'>" +
" <entity name='account' >" +
" <attribute name='address1_city' />" +
" <attribute name='name' />" +
" </entity>" +
"</fetch>";

        $("#example").DataTable({
            "processing": true,
            "serverSide": true,
            "aoColumnDefs": [

{ bSortable: true, aTargets: [0] },
{ bSortable: false, aTargets: ['_all'] }
],
"ajax":
{
url: encodeURI(organizationURI + "/api/data/v9.0/accounts?fetchXml=" + fetchxml),
dataType: 'json',
method: 'get',
headers: { 'Authorization': 'Bearer' + token },
data: function (d) {
return d;
},

                },
            columns: [
    { title: "Name" },
    { title: "City" },

            ]
        });

it is throwing the 401 Un Authroizer error..

i written following code it is execute with out any error,

var fetchxml = "<fetch mapping='logical' page='2' count='10' returntotalrecordcount='true' pagingcookie='%253ccookie%2520page%253d%25221%2522%253e%253caccountid%2520last%253d%2522%257bB8A19CDD-88DF-E311-B8E5-6C3BE5A8B200%257d%2522%2520first%253d%2522%257b475B158C-541C-E511-80D3-3863BB347BA8%257d%2522%2520%252f%253e%253c%252fcookie%253e'>" +
" <entity name='account' >" +
" <attribute name='emailaddress1' />" +
" <attribute name='address1_city' />" +
" <attribute name='accountid' />" +
" <attribute name='parentaccountid' />" +
" <attribute name='address1_composite' />" +
" <attribute name='name' />" +
" </entity>" +
"</fetch>";

              var req = new XMLHttpRequest()
              req.open("GET", encodeURI(organizationURI + "/api/data/v9.0/accounts?fetchXml=" + fetchxml), true);
              //Set Bearer token
              req.setRequestHeader("Authorization", "Bearer " + token);
              req.setRequestHeader("Accept", "application/json");
              req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
              req.setRequestHeader("OData-MaxVersion", "4.0");
              req.setRequestHeader("OData-Version", "4.0");
              req.setRequestHeader("Prefer", "odata.include-annotations=*");
              req.onreadystatechange = function () {
                  if (this.readyState == 4 /* complete */) {
                      req.onreadystatechange = null;
                      if (this.status == 200) {
                          var accounts = JSON.parse(this.response).value;
                          var temp = JSON.parse(this.response);
                          temp["@Microsoft.Dynamics.CRM.fetchxmlpagingcookie"];
                          var entityObj = [];
                          var pagingInfo = null;
                          debugger;

                          //Check if results contains cookies
                          //if yes then retrieve next set of records
                          if (temp["@Microsoft.Dynamics.CRM.fetchxmlpagingcookie"] != null) {

                              document.getElementById("next").style.display = "block";
                              document.getElementById("nxtPage").textContent = "";
                              document.getElementById("nxtPage").textContent = temp["@Microsoft.Dynamics.CRM.fetchxmlpagingcookie"];
                          }
                          renderAccounts(accounts);
                          var data = [];
                          for (var i = 0; i < accounts.length; i++) {
                              var name = accounts[i].name;
                              var city = accounts[i].address1_city;
                              data.push([name, city]);
                          }

                      }
                      else {
                          var error = JSON.parse(this.response).error;
                          console.log(error.message);
                          errorMessage.textContent = error.message;
                      }
                  }
              };
              req.send();

Thanks in advance,
Sairam

Horizontal alignment when having multiple childs

$
0
0

Hello
I've managed to finish the master-detail functionality, but I've noticed the lack of alignment control, meaning, each time I expand a detail set the header is moving to the right; more, the "scrollX" it appears to function opposite as described: if it is true, the header and the rows are static, although they are misaligned.
Please find below the code along with 2 files of data.

$(document).ready(function() {
    var table = $('#example').DataTable( {
      ajax: "alin@TS Locks_Master.txt"
      /*
      function (data, callback, settings) {
              $.ajax({
                url: "objects.txt",
              }).then ( function(json) {
                var data = JSON.parse(json);
                callback(data);            
              });
      }
      */,
      pageLength: 10,
      scrollX: "true",
      
        columns: [
            {
                "className":      'details-control',
                "orderable":      false,
                "data":           null,
                "defaultContent": ''
            },
                { data: 0 },
                { data: 1 },
                { data: 2 },
                { data: 3 },
                { data: 4 }
            ],
            
        initComplete: function () {
          init = false;
        },
          createdRow: function ( row, data, index ) {
            if (data[5] === '') {
              var td = $(row).find("td:first");
              td.removeClass( 'details-control' );
            }
           }
    } );
     
    // Add event listener for opening and closing first level childdetails
    $('#example tbody').on('click', 'td.details-control', function () {
        var tr = $(this).closest('tr');
        var row = table.row( tr );
        var rowData = row.data();
        var index = rowData[5];
 
        if ( row.child.isShown() ) {
            // This row is already open - close it
            row.child.hide();
            tr.removeClass('shown');
        }
        else {
            // Open this row
            row.child( 
               '<table id = "child_details'+index+'" style="padding-left:50px;">'+
                   '<thead>'+
                        '<tr>'+
                            '<th>#</th>'+
                            '<th>CltId</th>'+
                            '<th>DocCode</th>'+
                            '<th>DocNo</th>'+
                            '<th>DocDate</th>'+
                            '<th>Value</th>'+
                        '</tr>'+
                    '</thead>'+
                    '<tbody></tbody>'+
                '</table>').show();
          
             $('#child_details'+index).DataTable({
                ajax: function (data, callback, settings) {
                  $.ajax({
                    url: "alin@TS Locks_Detail.txt"
                  }).then ( function(json) {
                    var data = JSON.parse(json);
                    data = data.data;
                    
                    var display = [];
                    for (d = 0; d < data.length; d++) {
                      if (data[d][5] == rowData[5]) {
                        display.push(data[d]);
                      }
                    }
                    callback({data: display});
                  });
                },
                //fixedHeader:{header: "true"},
                scrollX: 800,
                scrollCollapse: true,
                td: 'scope= "col"',
                columns: [
                    {
                        "className":      'details-control1',
                        "orderable":      false,
                        "data":           null,
                        "defaultContent": ''
                    },
                    { data: 0 },
                    { data: 1 },
                    { data: 2 },
                    { data: 3 },
                    { data: 4 }
                  ],
                columnDefs: [{ targets: [1] , visible: false}],
                destroy: true,
                scrollY: '200px',
            });
            tr.addClass('shown');
        }
    })
} );

How to implement Multi Nested DataTable

$
0
0

How to implement Multi Nested DataTable ???

Non-jQuery version of DataTables. Is this gonna happen?

$
0
0

Is there any initiative to have DataTables operate without jQuery as a dependency?

take subtable item

$
0
0

I have a subtable in which I can take the value of id in this way, but if I hide the value of id, it does not work anymore

how can I access a value of a row in a subtable or daughter table

$('table').off('click', 'button.TareaH');
    $('table').on('click', 'button.TareaH', function () {
        idT = $(this).parent().siblings('td:first').text();
        
    });

Gracias

Where to add responsive value?

$
0
0

I have an existing DT system, I've downloaded the new CSS and JS responsive files and i'm now wondering where to add the responsive: true value to the JS scripts.

I assumed it would be table.home.js file

var table = $('#home').DataTable( {
        ajax: 'php/table.home.php',
        columns: [
            {
                "data": "full_name"
            },
            {
                "data": "level"
            },
            {
                "data": "id"
            },
            {
                "data": "email_"
            },
            {
                "data": "assesser"
            }
        ],
        rowReorder: {
            selector: 'td:nth-child(2)'
        },
        select: true,
        responsive: true,
        lengthChange: false
    } );

Like such, this seems to make no difference to the tables tho?

Thanks you!


wood peeler manufacturers

$
0
0

CNC Non-chuck Rotary Lathe
This machine is used to peel log without skin to veneer and continue peeling log core after spindle peeing. It is very popular for plywood industry.
We have 4f, 6f and 8f to meet different requirement. You can choose it according to your demand.
MODELSL2600/3 SL2600/4 SL1350/3 SL1350/4
Max.cutting length (mm)2600260013501350
Max.cutting diameter (mm)360 360 360 360
Log-core diameter (mm) 40 40 40 40
Cutting thickness (mm)0.8 - 3.00.8 - 3.00.8 - 3.00.8 - 3.0
Veneer output speed(m/min)42424242
Power (kw)29.228.121.720.6
Overall dimensions (mm)4650x1950x17004650×1900×16003450×1850×17003320×1660×1600
Weight (kg)9000850070007000
MODELSL2000/3 SL2000/4
Max.cutting length (mm)20002000
Max.cutting diameter (mm) 360 360
Log-core diameter (mm) 40 40
Cutting thickness (mm)0.8 - 3.00.8 - 3.0
Veneer output speed(m/min)4242
Power (kw)25.724.6
Overall dimensions (mm)4050×1950×17003750×1900×1600
Weight (kg)80008000
We can supply the perfect after sale service to our customer, such as installation, maintenance for the machines.
Our machines have passed ISO9001 and CE certification.
Baishengyuan Group, equipped with a professional factory, now brings you the best quality cnc non-chuck rotary lathe with competitive price from its own factory. We're known as one of the largest cnc non-chuck rotary lathe manufacturers and suppliers in China. Should you're interested in it, welcome to contact us.wood peeler manufacturers
website:http://www.bsymachine.com/plywood-machine/

Acrylic Brochure Holders buyers

$
0
0

1.Our History
Xiamen ANJA display system Co., Ltd. is located in Xiamen City of China and has served customers all around the world for over 10 years. Now it has grown to become one of the most professional export manufacturer of store displays&store fixtures in China. Every year we have booth at the show of USA and Germany.

  1. Our Factory
    In our own well-equipped factory, we manufacture all kinds of
    store display&store fixture,which made by metal,wooden and acrylic.
    With a full range of technology such as metal powder coating,
    metal plating,stainless steel polishing or brushed,
    MDF with paint,laminated,melamined,solid wood,acrylic and etc.
    We have experienced designers and technicians can customized
    store display according to you need,in different shapes,sizes,materials
    and colors.
    Our store displays are widely use in all types of shops to achieve better showing.
    For example:retail store displays,shelves,cash table,showcase,cabinet,counter,
    and desk, shoes and clothing display racks in chain stores,
    high quality jewelry and watches displays,wine holders,sunglasses display,
    exhibit displays.,point of purchase displays, acrylic showcases, brochure holder, LED sign, LED light box and etc.

3.Our Product
Products includes the following:
1, Retail shop display,shop furniture.
2, store fixtures,racks,shelves.
3, Shoes and clothing display
4, Showcase,cabinet,tables,desh,counter.
5. high quality displays for jewelry,watches and sunglass.
6. Customize display as your need.
4.Product Application
Our store displays are widely use in all types of shops to achieve better showing.
For example:retail store displays,shelves,cash table,showcase,cabinet,counter,
and desk, shoes and clothing display racks in chain stores,
high quality jewelry and watches displays,wine holders,sunglasses display,
exhibit displays.,point of purchase displays, acrylic showcases, brochure holder, LED sign, LED light box and etc
5.Our Certificate
All our products are accept customization, product quality is to meet customer demand, and our factory has passed SGS certification
6.Production Equipment
In our own well-equipped factory, we make a full range of technology such as metal powder coating,
metal plating,stainless steel polishing or brushed,
MDF with paint,laminated,melamined,solid wood,acrylic and etc.
We have experienced designers and technicians can customized
store display according to you need,in different shapes,sizes,materials
and colors

7.Production Market
100% export.
Main market is Europe,America,Australia,Asia.
Some customers: Nike,Shell Group,Kappa, Ray-Ban, Ford, Fiat Chrysler.
8.Our service
Pre-sale customer drawings, we customize product according to customer needs, and meet customer demand, ensure the quality of after-sale tracking customers, improve customer put forwardAcrylic Brochure Holders buyers
website:http://www.china-storedisplay.com/
website2:http://www.chinastorefurniture.com/

low price Rubber Track

$
0
0

ATV Snowcat SUV Rubber Track
*Continued rubber track with conventional and interchangeable type
*Comprehensive range of standard rubber crawler track systems available
*Undercarriages and bases available for a wide range of machinery
*Welcome OEM orders for complete track systems
*Applicative vehicles:ATV/SUV all-terrain vehicles all-terrain vehicles.snow machinery and so on.
p#Width(mm)Pitch(mm)No.of LinksLength(mm)Weight(kg)
ATV 1A2507230216011.3
ATV 1B2507230216011.3
ATV 2A3207230216015
ATV 2B3207230216021
ATV 320054301728N/A
Shanghai Shouhuo is specialized the production of atv snowcat suv rubber track. Well-known as one of the leading manufacturers and suppliers in China, we can offer you quality and low price products. Welcome to buy cheap atv snowcat suv rubber track for sale from our factory and customized orders are also welcome.low price Rubber Track
website:http://www.conveyorbeltchn.com/rubber-track/

liquid tank semi trailer

$
0
0

Our History
we are a professional manufacturer of semi trailer parts named Jinan Ketian Auto Parts Co.,Ltd (KT),a subsidiary attach to liangshan zhongxing group located in liangshan county shandong province china
At present,our market has been covered around south America,middle east ,Africa and southeast Asia,our products and quality has been approved by more and more countries,especially our round type axle beam which has good sales in south America market
Our Factory
Plant area is over 35000m2 ,divided into five parts,there are axle workshop ,suspension
workshop,landing gear&fifth wheel&kingpin workshop,semi-trailer workshop and warehouse. Company founded in 2001 so far company own more then 500 professional workers and 20 advanced technology engineers,with perfect production line and first class testing equipment near by workshop,over 15 years production experience.the more is our delivery time is punctual,and products in good quality that enjoy good reputation all the time from our customers in the word,and with competitive price!our axle&suspension annual production capacity is 20000set per year,semi trailer production capacity can be up to 1000pcs per year.
Our Product
our main products are included as below:
semi trailer
German type trailer axle
America type semi trailer axle
Machanical suspension
Air suspension
Bogie
Argo bogie suspension
Heavy duty leaf spring
landing gear
twist lock
kingpin,
fifth wheel...
Product Application
Products use for semi trailer,low bed trailer,oil tanker trailer,said wall trailer,dump trailer,skeleton semi trailer,fated bed semi trailer
For 50 ton low load trailer
For 80 ton fated bed semi trailer
For 150 ton engineering special load bed semi trailer
For 45cbm oil tanker truck trailer
For 30cbm liquid tanker trailer
For 50 ton cement powder semi trailer
For 20feet and 40ft container trailer
For all of semi trailer chassis parts
Our Certificate
We always feel that all success of our company is directly related to the quality of the products we offer. They meet the highest quality requirements as stipulated in TS16949,ISO9001, ISO14000:14001 SGS guidelines and our stringent quality control system.
Production Equipment
With overlong axle beam forging machine and professional semi trailer axle production line,which apply to 10 ton axle,12 ton axle,13 ton axle,14 ton axle,14 ton axle to 20 ton axle semi trailer axle.
Own a huge trailer suspension workshop there are included cutting machine,stamping machine,self-welding machine,panting machine....which can be satisfied with America type and German type mechanical single axle,tandem axle and three axle suspension,also can be make for air bag suspension,13 ton air spring suspension,bogie,and Argo bogie suspension.
Production Market
We have customers from both domestic market and oversea market. Jinan ketian auto parts co.,ltd Sales managers can speak fluent English for good communication. Our main sales market:
North America 5.00%
Africa:20%
South America:20%
Middle east:20%
Russia:20%
South east Asia:15%

Our service
Besides our existing molded products, ketian also can produce customized products according to the drawings or samples from our customers. We control the product quality critically for every step during the manufacturing from design to conformation,production to delivery and after-sales . We offer technical support that is second to none. …liquid tank semi trailer
website:http://www.kt-trailers.com/

Brass Stamping suppliers

$
0
0

Our History
Since 2002, Dongguan Lemo Precision Metal Products Co.,Ltd focus on manufacturing precision OEM metal parts by CNC machining, CNC turning, CNC milling, sheet metal fabrication, metal stamping and die casting service. We started as a small workshop, now has become one of the leading ISO9001: 2008 certificated manufacturer in the CNC machining industry in China.
Our Factory
Our factory located in Dongguan City ( which named World-factory city in China),1.0-1.5 Hours driving to Guangzhou /Shenzhen/HongKong airport. 120 skilled operators, 15 Senior Engineers team, 15000㎡ factory, three big workshops. All of this condition will provide perfect service and solution for all the world customers.
Our Capability
Dongguan Lemo Precision Metal Products Co.,Ltd provide following service:
CNC machining,CNC turning ,CNC milling , Precision Grinding , Wire EDM, Welding, Jigs and Fixtures, Heat sinks, Gantry Milling, Sheet metal fabrication, Metal stamping,
Die casting and Injection molding.
Lemo has capability for processing the material as follow:
Aluminum,Stainless steel, Brass, Copper, Bronze ,Tiantium, Cold rolled steel
Alloy steel, Iron, spring steel, Tungsten carbide, Carbon steel, Tool steel, Plastic (Delrin,PVC,PUPEEK,HDPE,UHMW etc), Macor,Ceramics.etc.
As well as we can provide the various surface treatment, such as: Anodizing, Hard anodizing, Zinc / Chrome / Nickel/TiCN/Silver/Gold/ Plated, Nitrided, Passivation, Polishing, Sandblasting, Phosphating, , Painting, Power coated, Black Oxide, Heat treatment, Carburizing
Product Application
Our precision OEM parts are widely used in Automation, Aerospace, Automotive, Medical, Military, Defence, Telecommunications, Inspect Instruments, Electronic, Packaging, Sensors, Optical instruments, Food equipment, Computers, Motorcycles, Racing, Agriculture machinery and so on.
Lemo are being the appointed supplier of famous MAHLE,Peogeot automobile, CASC aerospace, OMRON medical, DELL computer and Duracell .etc

Our Certificate
Lemo implement the quality management system ISO9001:2008 and ISO/TS16949, we are also SGS audited golden supplier in China, RoHs compliance.
We possess advanced producing and inspection equipments; More than 40 CNC machining centers for 3-Axis,4-Axis,5-Axis,multi-Axis machines and other ancillary equipments. All in all, we can meet the increasing and higher requirements for our different level customers.
Production Market
80% of our products are customized for foreign market, main from USA and European.
Over 14 years OEM experience for seeking high precision and good quality. Additional processional export packing make all of our clients satisfied.
Our service
Every customer can get VIP service from Lemo.
Pre-sale service: We are not just provide quotation according to your drawings .Our engineers will give you best solution from material use, surface treatment, processing method and cost reduced.
On-sales service: We are not just receive payment, then finish parts. We will take some photos during processing on machine, let you see how we proceed your order, what situation at the moment ;When finished, will take some photos for packing,let you know the packing size and weight, then give you cheaper freight cost suggestion.
After-sales service: It is not over after our clients got the goods. If find any defects or inconformity with the drawings, please take one photo and show us, we will handle the complaint within 4 hours, and will arrange replacement immediately and ship out good parts within 3 days ( the freight cost will be paid by Lemo)
"Too more word-promise is not useful, please see Lemo's action"
Welcome to contact us for establishing honest and win-win business cooperation!Brass Stamping suppliers
website:http://www.lemo-machining.com/

Cut to Length Machine suppliers

$
0
0

Simple slitting line
Description
Slitting line machine is not only for the steel service sitting industry, but also for the pipe industry. A lot of customers make the pipes before slitting the large coil to the small size of coils. Slitting line can do uncoiling, slitting and recoiling works, make coil steel to any needed width coil steel.
Specifications
Component:
The simple slitting line is composed of Hydraulic feeding car, Hydraulic uncoiler, coil-end-feeding and shoveling, double roller pinching feeding, three-roller-leveling, end-cutting, strip-aligning, disk shearing, scrap reeling, tensioning, recoiling ,coil down car, hydraulic control, and electric control.
Detailed specifications:
WBSM-(0.3-2.0)×1500mm slitting line
Material of coils: carbon steel, color steel, galvanized steel and stainless steel, etc
Material thickness: 0.3-2 mm
Material width: 1500mm
Inner diameter of coils: φ508mm
Max. Outer diameter of coils: φ1500mm
Max. Coil weight: 8000kg
Slitting speed: 0-30 m/min, adjustableCut to Length Machine suppliers
website:http://www.rollformingchina.net/slitting-cut-to-length-line/

China CNC Beam Drilling Machine suppliers

$
0
0

CNC High Speed Gantry Style Movable Ram Type Drilling Machine
Product Usage:
Used for the three sides drilling and milling for large size H-beam or box beam, the three drilling and milling power head can working independently or working at the same time. CNC machining process, high efficiency, high accuracy, easy to programm, simple operation. Composed with lathe bed, gantry, drilling and milling power head, electric control system, hydraulic system, centralized lubrication system, cooling chip removal system, detection system and etc .
This is flexible CNC drilling machine that adapt to many kinds of batch production.
Product Feature:
This machine used gantry mobile, the form of work table is fixed. Advantages: work table load-bearing very well, the overall rigidity is good, excellent shock resistance, gantry move flexibly, the precision can keep for a long-term, reduced the bed length, save the space. Decorate with T slots on the work table, convenient clamping workpiece.
Gantry move(X axis)using linear guide, AC servo motor plus low backlash rack and pinion pairs of bilateral synchronous drive. Characteristic: Bilateral synchronous drive to ensure the parallel movement of the gantry, ensure that the Y axis in any position on the X-axis perpendicularity. Gantry beams and two-column slide on the movement, the use of linear guide, AC servo motor and ball screw drive. The feed motion of each drilling power head adopts linear guide, AC servo motor and ball screw drive.
Sliding table installation with PCU (Pneumatic Checkout Unit) to check the position of H -shape steel, correct workpiece shape error and the clamping error by detecting compensation function, automatic correct the position for drilling.
Drilling power head used for BT50(7:24)internal high - speed precision rigid spindle, high rigidity and high precision, to meet the high-speed heavy cutting. The power head equipped with hydraulic knife cylinder to cooperate with 45° four-leg claw mechanism with spindle, realize the automatic loose and broach knife action, it is very convenient to loading and unloading knife. The spindle is driven through the timing belt by high power spindle servo motor. Speed of spindle 30~3000r/min, with wide speed range. Timing belt is chosen the high quality brand, high tensile strength, long service life, and low noise, very little vibration when in high speed operation. In the top of the precision spindle with a high-pressure rotary joint can access the cooling lubricating fluid, it can directly spray to the cutting position through the spindle hole, pull the nail hole, BT50 handle hole and drill center hole, the spindle center water function can improve cutting Processing efficiency, lower the cost of deep hole process and protection tools
Aerosol cooling system, automatic lubrication system, flat chain automatic chip conveyor.
The ball screw, gear and rack, linear rolling guide, hydraulic pump, valve, spindle and feed servo motor and its drive, the numerical control system and etc. are chosen from famous brands both domestic and overseas, high precision, high reliability, less failure, high operation rate.(See the list of purchased parts)
Technical Parameters:
Name Item BDH1010 BDH1515 BDH2020 BDH2515
Workpiece size Width 300~1000mm 300~1500mm 300~2000mm 300~2500mm
Height 300~1000mm 300~1500mm 300~2000mm 300~1500mm
Maximum Length 22000mm
Can be customized 22000mm
Can be customized 22000mm
Can be customized 22000mm
Can be customized
Minimum Length Unlimited Unlimited Unlimited Unlimited
Drilling and milling power head Type BT50
Ram-type Drilling and Milling BT50 BT50
Ram-type Drilling and Milling BT50 BT50
Ram-type Drilling and Milling BT50 BT50
Ram-type Drilling and Milling BT50
Quantity 3 3 3 3
Drilling Diameter ¢10~¢50 mm ¢10~¢50 mm ¢10~¢50 mm ¢10~¢50 mm
Spindle Speed 30~3000r/min 30~3000r/min 30~3000r/min 3~3000r/min
(Z1、Z2、Z3
Axial Stroke 500mm 600mm 800mm
1000mm
Infeed Speed 0~5m/min 0~5m/min 0~5m/min 0~5m/min
Spindle Motor Power 22kW 22kW 22kW 22kW
Serve Motor Power 3x3 kW 3x3 kW 3x3 kW 3x3 kW
Gantry
Longitudinal
Movement(X axis) Max Stroke
(X axis)
22000mm
Can be customized 22000mm
Can be customized 22000mm
Can be customized 22000mm
Can be customized
Servo Motor Power (X axis) 2x3 kW 2x3 kW 2x3 kW 2x3 kW
The Upper Power Head Unit for Drilling and Milling Max Stroke (Y3 axis) 1000mm 1500mm 2000mm 2000mm
Left Power Head Unit for Drilling and Milling Max Stroke (Y1 axis) 1000mm 1500mm 2000mm 1500mm
Right Power Head Unit for Drilling and Milling Max Stroke
(Y2 Axis)
1000mm 1500mm 2000mm 1500mm
Y1 Y2 Y3
Axis Max Movement Speed 10m/min 10m/min 10m/min 10m/min
Y1 Y2 Y3
AXIS Serve Motor Power 3x3kW 3x3kW 3x3kW 3x3kW
Chip Removal and Cooling Systems Motor Power 2x0.75 + 0.45 kW 2x0.75 + 0.45 kW 2x0.75 + 0.45 kW 2x0.75 + 0.45 kW
Hydraulic System Pressure 3~7 Mpa 3~7 Mpa 3~7 Mpa 3~7 Mpa
Flow 25 +33 L/min 25 +33 L/min 25 +33 L/min 25 +33 L/min
Motor Power 3+4 kW 3+4 kW 3+4 kW 3+4 kW
Electrical System Control Method FAGOR8070
Optional FAGOR8070
Optional FAGOR8070
Optional FAGOR8070
Optional
Quantity of CNC Axes 7+3 Servo Spindle 7+3 Servo Spindle 7+3 Servo Spindle 7+3 Servo Spindle
Total Power About110kw About 110kw About 110kw About 110KW
Welcome to buy our bdh cnc gantry movable high speed 3 d drilling machine to help with your business. As one of the leading manufacturers of various CNC machines, we are equipped with advanced technology and equipment. Please be free to enjoy our excellent price and good service.China CNC Beam Drilling Machine suppliers
website:http://www.sdtdcnc.com/cnc-drilling-machine/cnc-beam-drilling-machine/


China Mirror factory

$
0
0

Trust Glass Co.,Ltd. was established in 1997. It’s a professional manufacturer for furniture glass and mirrors in south of china. Our factory occupy 35,000 square meters, of which 28,000 square meters are the modernized workshop. Now our factory is equipped with cutting, edging, drilling, temprering, silkscreening washing, packing etc. fully production lines.Our products have been exported to more than 20 countries and regions. All of our products comply with quality standards for different countries,such as ISO,CE,EN,BS by SGS.

Our mission is to offer top quality products and excellent service to achieve the target of mutual win together with all of our clinets.

China Mirror factory
website:http://www.trust-glass.com/

wholesale DC Micro Gear Motor

Fail Export table to excel

$
0
0

Can someone help me, i've got table with 3 row data . when i try to export that table into excel it just appear in one row data . i dont know what is the problem i try to turn of the select function but nothing change at all. Please help me.

nb: Sorry for my bad english

<script type="text/javascript">
        $(document).ready(function() {
            $('#tableViewKuota').DataTable( {
                dom: 'Bfrtip',
                buttons: [
                    'copy', 'csv', 'excel', 'pdf', 'print'
                ]
            } );
        } );
</script>

Customized Ancillary Equipment For Steelmaking Plant

$
0
0

A: Generally, it is 3 months after payment, or it depends on the quantity of order.
Q:What about the after-sale services?
A:We provide 12 months quality warranty after dispatch. We also offer long-time technical advisory services.
Q.What about the transpotation?
A:We can take any type of transpotation according to the customer's demand.
Q: why choose us?
A:Yuanfang Machinery Manufacturing Co., Ltd. is located in Jiangyin City, Jiangsu Province, China. It is founded in 2006, covering an area of about 40,000 m2 with a gross investment of 120 million RMB. Yuanfang Machinery Manufacturing Co., Ltd. is an enterprise majoring in designing, manufacturing and selling large metallurgical, environment friendly and non-standard equipments. It is also a professional manufacturer in finishing and grinding series equipments applied on the subsequent processes after steel producing. The company passed the ISO9001 international quality certification in 2007. In 2009, it was identified as the “High and New Tech Enterprise in Jiangsu Province”. In the year of 2010, it passed the ISO14001 Environmental Management System Certification.
Please feel free to contact with us for detailed information, we will reply you at once.
Contact Below:
Jiangyin YuanFang Machinery Manufacturing Co.,LTD.
Shanny Shen: +86 151 5228 8398
Jessica Zhang: +86 159 6161 0166
Tel:+86-510-80283152
Fax:+86-510-86292857
Email: jessica@ yuanfangmach.com
sunny@yuanfangmach.com
Web:www.chamferingmachinechina.com
Add:No.8 Kaitai Rd. Nanzha Street Jiangyin City Jiangsu Province chinaCustomized Ancillary Equipment For Steelmaking Plant
website:http://www.chamferingmachinechina.com/ancillary-equipment-for-steelmaking-plant/

China electric kitchen hot water tap suppliers

$
0
0

Our History
We are a leading designer and manufacturer of high-tech water heating system. We are proud to be the pioneer in inventing the ground-breaking Porcelain–Energy Technology. Our diverse products range from instant heat faucet to tankless water heater for basin and shower. Porcelain heating system is one-of-a-kind, it generates heat over 1,200 degrees Celsius and raises water temperature instantaneously to provide hot water on demand. We design and manufacture the world’s smallest heater by using Porcelain–Energy Technology. We provide a wide range of hot water supply solutions to serve your needs.
The Porcelain-Energy Technology is re-engineering the conventional "Centralize Hot Water Feeding Method." Customers can continue enjoy high quality hot/warm water supply with our high energy efficient solutions. Our point-of-use hot water supply system can significantly help customers to save energy and to prevent water and energy wastage from inefficient hot water supply systems.
Our Product
Kukel International Group Ltd is specialize in designing, manufacturing and selling environmental protection, energy saving, low carbon emission series of electric heating products – instantaneous heat faucet and instantaneous hot shower.
Product Application
Our products are applicable to residential projects such as apartments and houses, commercial projects such as shopping malls, hospitals, schools, commercial buildings and hotels.
Our service
Q1. What are the products?
A:i) KUKEL ECO Porcelain Energy single-phase electric Instant Heat Faucet world’s first single phase instant heating faucet. It only requires a cold-water supply outlet and an electric outlet which suitable for kitchen and bathroom. Model KUL23-01, KUL23-02, KUL23-02C, KUL23-08, KUL23-08C (with outlet 2.8kw and without plugs 4.0kw)
ii) KUKEL ECO Porcelain Energy single-phase electric Instant Water Heater. It only requires one cold water supply outlet and single-phase power supply (up to 8500W) (recommended only for short-distance hot water connection). Model KUL59-812, KUL59-813 and electronic thermostatic KUL59-818, KUL59-828.
iii) KUKEL ECO Porcelain Energy single-phase electric Instant Basin Mini Water Heater is also the world first water heater that size like a 500ml water bottle. It works by simply connecting the cold-water pipe, plug in the electric plugs, the outlet of hot & cold water connection connects to the own existing ordinary hot & cold connector of the faucet (suitable for the kitchen and bathroom), Model: KUL59-903 (with plugs 2.8kw and without plugs 4.0kw).
Q2. KUKEL product uses single-phase power supply, or three-phase?
A: Most of KUKEL product use single phase power supply 220V, suitable for general household in Asia and Europe. Our company's products range from 2800W - 8500W, the power of the model depends on the electricity supply of the residential or commercial building.
Q3. The water flow of Kukel products seems relatively low compared to gas water heaters, how can I increase the water flow?
A: Being energy saving and eco-friendly are the premises of Kukel products. Kukel’s product uses only single-phase power supply and can reduce water and power consumption whilst maintaining the water intensity in the shower at a moderate level and we do not encourage customer to increase the water flow.
Q4. The maintenance and warranty period?
A: i) Under normal circumstance, if our products do not function properly within one month of purchase, and the appearance of the product without any serious physical or damage, KUKEL will replace the product free of charge.
ii) KUKEL provide one year warranty.
http://www.kukel.com
Kukel had spent years in research and product development and obtained various patents for its unique technology. Our patent porcelain heating technology successfully enhances water heating that reaches world-class level. We are much more secure and reliable than traditional technology. Unique products such as heat faucet and hot shower system are incomparable by other substitutes.
Faucet/Water heater patent:
U.S. Pat. Pending No. 121766116 // 12984892
D.E. Pat.Pending No. 20 2011 100 751.4
E.U. Pat.Pending No. 10251034.4
AUS Pat. Pending No. 2010201462 // 2011201940 // 2011100539
T.W. Pat. Pending No. 099107172 // No. 099107173
H.K. Pat. Pending No. 10110107.7 // 10109178.3
A.R. Pat. Pending No. AR2010/0104158 // AR2010010441
PAN Pat. Pending No. 89080-01
GCC Pat. pending No. GC2010-17087 // GC2010-17186
PCT Pat. Pending No. PCT/CN2010/078229 // PCT/CN2010/076901 // PCT/CN2010/080106
C.N. Pat. Pending No. 200910193780.5 / 200910194269.7 / 200820111320.4 / 20072003420.0 / 20082000935.X China electric kitchen hot water tap suppliers
website:http://www.electric-tap-water-heater.com/
website2:http://www.electrictap-waterheater.com/

Viewing all 82257 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>