Within dom\html\form\input\text.php is this function:
51
function __construct($args)
52 {
53
54 parent::__construct($args);
55
56 $this->arg('size' , 6, $args, '32');
57
58
59 }
When line 56 is executed, this is the value of $args:
0 html.form.input.text
1
datakey playlist_title
dataValue New Playlist Default Name
domclass
0 sips_info validate[required]
formControl jform
It appears that there is no
size in the provided arguments, in spite of the XML shown below
<field name="playlist_title"
label="SIPS_FIELD_TITLE"
labelclass="tooltip"
description="SIPS_FIELD_TITLE_TOOLTIP"
alias="playlist_title"
required="true"
filter="STRING"
size="100"
class="sips_info validate[required]"
type="cktext"/>
Seems like a bug to me, but until it is fixed in the builder, can you point me to the place to fix it? - I've developed my component too much to rebuild again.
Also, using "text" instead of "cktext", works as expected and I can reproduce this using the Sandbox.