Skip to content

Textarea

George Joseph edited this page Oct 20, 2019 · 1 revision

Derived from Element -> Widget

An HTML "textarea" useful mainly for logs and GCode response output.

{
	/*
	 * All attributes of Element and Widget apply here.
	 */

	"id": "console_log",
	"type": "textarea",
	
	/* Don't allow any input from keyboard */
	"read_only": true,
	
	/* Wrap long lines */
	"wrap": "off",
	
	/* GCode commands sent are displayed */	
	"show_gcode_sent": false,
	
	/* Replies from GCode commands are displayed */	
	"show_gcode_replies": true,
	
	/* Replies from GCode commands will be prefixed by the command sent */	
	"show_gcode_in_replies": false,
	
	/* Log messages are displayed */	
	"show_log_messages": true,
	
	/* New entries are added to the top of the textarea */
	"new_entries_at_top": true
}
Clone this wiki locally