This question is locked. New answers and comments are not allowed.
Hi Folks,
The Telerik UI for PHP works well to allow for using standard elements within the library. I'm able to create a standard Telerik form and field as below for example.
$username = new \Kendo\UI\FormItem();
$username->label("Username")
->field("Username")
->validation(array("required" => true));
$form = new \Kendo\UI\Form("form");
$form->orientation("vertical")
->addItem($username);
Is it possible however to add a custom HTML element to a form, such as the markup for a Google Sign In button for instance? (Maybe something like the below).
$googleButton = new \Kendo\UI\HtmlItem();
$googleButton->content("<div>[code for Google button]</div>");
$form = new \Kendo\UI\Form("form");
$form->orientation("vertical")
->addItem($googleButton);
Thanks,
CP.