Hi All,

I need help with a scenario where in i am working a application which uses 
both AngularJS and JSF 2.0 and i am trying to use AngularJS expression with 
param facelet tag as below

<ui:include src="test.xhtml">
      <ui:param name="taskIDAAA" value="{{testDetail.id}}" >
      </ui:param>
 </ui:include>

this providing the value of taskIDAAA in test.xhtml as {{testDetail.id}} 
and is not resolving, that is expected behivour i guess as this will be 
treated as plain string so i also tried the below

<ui:include src="test.xhtml">
      <ui:param name="taskIDAAA" ng-bind="{{testDetail.id}}"></ui:param>
</ui:include>

and also this 

<ui:include src="test.xhtml">
       <ui:param name="taskIDAAA">{{testDetail.id}}</ui:param>
</ui:include>

without any success, any pointers as to how this can be achieved would be 
helpful.

Thanks & Regards

Vinay

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to