You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ang...@googlegroups.com
Hi,
I am new to Angular JS/UI. I recently updated my angular js and angular ui to the latest versions. I am now getting an error when I am creating an input with a typeahead dynamically of:
Error: Failed to load template: template/typeahead/typeahead.html
I tried reproducing this in plunkr but I am unable to. I am doing something similar to this though (I am not getting the error in my plunkr):
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ang...@googlegroups.com
Hi,
Unfortunately I am using the tpls and I am still getting the error but I am still unable to reproduce in plunkr. Thanks for the reply, I will continue trying!
Thanks,
Andy
Message has been deleted
coderazzi coderazzi
unread,
Jun 4, 2013, 9:44:43 PM6/4/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ang...@googlegroups.com
Hi,
I had the same problem; in my case, I had forget to include the module dependency:
This last dependency is a utility module that just includes the default typeahead template on the template cache.
Hope this helps.
Pawel Kozlowski
unread,
Jun 5, 2013, 7:13:36 AM6/5/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ang...@googlegroups.com
Hi!
On Thu, May 9, 2013 at 4:07 AM, Andrew Chang <ahc...@gmail.com> wrote:
> I realized that when I pulled down the angular ui from NuGet, it does not
> install a templates folder with the specified folder/file below. Is that
> normal?
No, no need for this. Just include a file with bundled templates, ex.:
ui-bootstrap-tpls-0.3.0.js (please notice -tpls- in the file name).
Cheers,
Pawel
Pawel Kozlowski
unread,
Jun 5, 2013, 7:16:17 AM6/5/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ang...@googlegroups.com
Hi!
On Wed, Jun 5, 2013 at 3:44 AM, coderazzi coderazzi <code...@gmail.com> wrote:
> I had the same problem; in my case, I had forget to include the module
> dependency:
>
> angular.module('myModule', ['ui.bootstrap.typeahead',
> "template/typeahead/typeahead.html"]) . . .
>
> This last dependency is a utility module that just includes the default
> typeahead template on the template cache.
I wonder why you have decided to depend on a specific module instead
of having dependency on the 'ui.boostrap':
angular.module('myModule', ['ui.bootstrap"])
If you don't want to depend on the whole package just create a custom
build (there is a button for this on the project's home page).