DOLIKA

ELECTRIC FORKLIFTS · TELEHANDLERS · OEM

Electric Forklift Range

1.5T to 3.5T electric forklifts for warehouses, factories and industrial yards. Select a capacity to view its product gallery and verified specifications.View electric forklift range →

Telehandlers

Configurable telehandlers for construction, agriculture and industrial handling. Load, lift height and reach are confirmed for each project.View telehandler series →

Electric Grapple Loaders

1.5T and 2.0T battery-electric articulated loaders with straight lower fork tines and a hydraulic curved upper clamp for log handling.View grapple loader range →

Company & Qualifications

Founded in 2020, Shandong Dolika integrates production, R&D, processing, sales and international trade, supported by company and product qualifications.View company and qualifications →

Electric ForkliftsChoose a load capacity. Each product card opens a dedicated model page with verified specifications.

Electric Forklift DetailsVerified from the supplied factory parameter files.Shared dimensions
Lift height: 3,000 mm · Overall width: 1,200 mm · Overall height: 2,100 mm · Voltage: 60 V · Hydraulic power steering
1.5T Electric Forklift
Rated load 1,500 kg · Length 2,200 / 3,070 mm (without / with forks) · Operating weight 2,000 kg · Drive motor 5 kW AC · Hydraulic motor 4 kW brushless · Charge 4–5 h · Working time 5–6 h · Xinlianda controller
2.0T Electric Forklift
Rated load 2,000 kg · Length 2,500 / 3,570 mm · Operating weight 2,600 kg · Drive motor 7.5 kW AC · Hydraulic motor 5 kW AC · Charge 6 h · Working time 6–8 h · Xinlianda controller
2.5T Electric Forklift
Rated load 2,500 kg · Length 2,600 / 3,570 mm · Operating weight 3,400 kg · Drive motor 10 kW AC · Hydraulic motor 7.5 kW AC · Charge 5–8 h · Working time 6–7 h
3.0T Electric Forklift
Rated load 3,000 kg · Length 2,600 / 3,720 mm · Operating weight 4,000 kg · Drive motor 15 kW AC · Hydraulic motor 10 kW · Charge 6 h · Working time 6 h · Anti-rollback controller
3.5T Electric Forklift
Rated load 3,500 kg · Length 2,600 / 3,820 mm · Operating weight 4,300 kg · Drive motor 17 kW AC · Hydraulic motor 15 kW AC · Charge 6 h · Working time 6–8 h · Optional anti-rollback controller
Battery and standard equipment
Tianneng flooded lead-acid or Chilwee maintenance-free lead-acid options. Reinforced mast, solid tyres, charger, rain canopy and fire extinguisher; final fork, mast and battery configuration is confirmed per order.
Request a quotation by email →Contact us on WhatsApp →

TelehandlersChoose a rated load class. Every card opens a dedicated model detail page.The 2.5T, 3.0T, 3.5T and 4.0T machines use distinct chassis, tire and boom proportions based on real telehandler configurations.Verified factory specifications will be added to each model page; unconfirmed fields remain blank.

(function(){ var models=[ {key:'2-5t',title:'2.5T Compact Telehandler',load:'2.5 T',lead:'Compact chassis and short wheelbase for restricted construction, agricultural and industrial work areas.'}, {key:'3-0t',title:'3.0T Standard Telehandler',load:'3.0 T',lead:'Balanced wheelbase, boom and tire proportions for general material handling and pallet work.'}, {key:'3-5t',title:'3.5T Construction Telehandler',load:'3.5 T',lead:'Reinforced chassis, larger tires and heavier boom structure for demanding construction applications.'}, {key:'4-0t',title:'4.0T Heavy-Duty Telehandler',load:'4.0 T',lead:'Heavy-duty frame, large off-road tires and substantial counterweight for higher-load work.'} ]; var labels=['Max Load Capacity','Max Lifting Height','Max Reach','Engine Brand','Engine Power','Drive System','Transmission','Hydraulic System','Overall Dimension','Operating Weight','Certificate','Lead Time']; function ensurePage(){ var page=document.getElementById('telehandler-model-page'); if(page)return page; page=document.createElement('div');page.id='telehandler-model-page';page.className='notranslate';page.setAttribute('translate','no');page.hidden=true;return page; } function addEl(parent,tag,cls,text){var el=document.createElement(tag);if(cls)el.className=cls;if(text!==undefined&&text!==null)el.textContent=text;parent.appendChild(el);return el;} function showModel(key){ var m=models.find(function(x){return x.key===key;})||models[0]; var items=document.querySelectorAll('#gallery02 li'); var idx=models.findIndex(function(x){return x.key===m.key;}); var img=items[idx]&&items[idx].querySelector('img'); var raw=img?img.getAttribute('src'):'';var lazy=img?img.getAttribute('data-src'):'';var src=raw&&raw.indexOf('data:image')!==0?raw:(lazy&&lazy!=='done'?lazy:(img?(img.currentSrc||raw):'')); var page=ensurePage();while(page.firstChild)page.removeChild(page.firstChild); var shell=addEl(page,'div','th-detail-shell'); var back=addEl(shell,'a','th-back','← Back to Telehandlers');back.href='#telehandlers'; var hero=addEl(shell,'div','th-hero'); var heroImg=addEl(hero,'img','');heroImg.src=src;heroImg.alt=m.title; var info=addEl(hero,'div',''); addEl(info,'p','th-kicker','DOLIKA TELEHANDLER RANGE'); addEl(info,'h1','',m.title); addEl(info,'p','th-lead',m.lead); var cta=addEl(info,'a','th-cta','Request a Quote');cta.href='#home'; var panel=addEl(shell,'div','th-spec-panel'); addEl(panel,'h2','','Technical Specifications'); var grid=addEl(panel,'div','th-spec-grid'); function addRow(label,value){var row=addEl(grid,'div','th-spec-row');addEl(row,'span','th-spec-label',label);addEl(row,'span','th-spec-value',value);} addRow('Rated Load Class',m.load);labels.forEach(function(label){addRow(label,'—');}); addEl(shell,'div','th-note','Only the rated load class is currently assigned. The supplied parameter worksheet contains placeholders rather than verified factory values, so unconfirmed specifications are intentionally left blank.'); if(!page.isConnected)document.body.appendChild(page);page.hidden=false;document.body.classList.add('th-detail-open');page.scrollTop=0; back.onclick=function(e){e.preventDefault();history.pushState(null,'','?#telehandlers');closeModel();}; } function closeModel(){var page=document.getElementById('telehandler-model-page');if(page)page.hidden=true;document.body.classList.remove('th-detail-open');} function readKey(){var q=new URLSearchParams(location.search).get('model');if(q)return q;var h=location.hash||'';var m=h.match(/^#telehandler-details\?model=([^&]+)/);return m?m[1]:null;} function init(){ var items=document.querySelectorAll('#gallery02 li'); items.forEach(function(li,i){var m=models[i];if(!m)return;var cap=li.querySelector('.caption,figcaption');if(!cap){cap=document.createElement('div');cap.className='caption';li.appendChild(cap);}cap.textContent=m.title;li.setAttribute('role','link');li.setAttribute('tabindex','0');var openModel=function(e){e.preventDefault();e.stopPropagation();if(e.stopImmediatePropagation)e.stopImmediatePropagation();history.pushState(null,'','?model='+m.key+'#telehandlers');showModel(m.key);};li.onclick=null;li.addEventListener('click',openModel,true);var link=li.querySelector('a');if(link)link.addEventListener('click',openModel,true);li.onkeydown=function(e){if(e.key==='Enter'||e.key===' '){openModel(e);}};}); var key=readKey();if(key)showModel(key); } window.addEventListener('hashchange',function(){var key=readKey();if(key)showModel(key);else closeModel();});window.addEventListener('popstate',function(){var key=readKey();if(key)showModel(key);else closeModel();}); if(document.readyState==='loading')document.addEventListener('DOMContentLoaded',init);else init(); })();

Electric Grapple LoadersBattery-electric articulated wheel loaders equipped with straight lower fork tines and a hydraulically operated curved upper clamp for secure log and long-material handling.Choose the 1.5T compact model or the 2.0T JH20EV high-lift model. Each product card opens a dedicated model page with verified specifications and application images.Verified JH20EV highlights: 5,500 mm lift height · 4,500 mm unloading height · 1,600 mm grapple opening · 1,800 mm grapple width · 76.8 V electrical system · LiFePO4 battery · fast charging · 5–6 h working time.

DOLIKA electric forklift fleet

Shandong Dolika Automobile Trading Co., Ltd.Founded in 2020, DOLIKA integrates production, R&D, processing, sales and international trade. The company focuses on electric forklifts, telehandlers and customized material-handling solutions for global customers.Products are supplied for warehouses, factories, construction, agriculture and industrial yards. OEM / ODM configuration is supported according to drawings and working requirements.Qualifications and documentsBusiness License · Trademark · Production License · CE Certificate · Special Equipment / Type Test Documents

DOLIKA electric forklift fleet