Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ashwani on Jul 15, 2009 06:45
open dhtmlx forum
Formatter on DHTMLXEditor

Hi,

1). Can formatter on dhtmlxEditor be separated and placed on dhtmlxToolbar?
2). Can formatter on dhtmlxEditor be made invisible?

Thanks.
Answer posted by Alex (support) on Jul 15, 2009 07:25

Hello,

currently editor uses dhtmlxToolbar as buttons "holder". The toolbar object is

var toolbar = editor.tb;

It isn't possible to hide toolbar. You can try to disable buttons if you want:

editor.tb.forEachItem(function(id){
  editor.tb.disableItem(id);
})