I am currently using CAPH-angular to create an app for Tizen Smart TV.
Following a tutorial from here, I added the input tag as instructed but encountered an error.
<caph-input class="input-user-login" input-type="text" on-focused="objFocus($event)" on-blurred="objBlur($event)" max-length="100" place-holder="Username" focusable="{depth: DEPTH.LOGIN, name: 'login-1', nextFocus: {right: 'login-2', down: 'login-2'}}"></caph-input>
The console displays the following error message:
TypeError: a(...).assign is not a function
In addition, I am unable to get focus on the inputs as intended.
Any help is greatly appreciated. Thanks in advance!