-
New Feature
-
Resolution: Unresolved
-
Normal
-
None
-
None
-
None
-
Security Level: Jimmy
-
None
Steps to Reproduce
=EXCHANGE(1,23)
Current Result
Expected Result
root cause
the code below avoids adding a page function mapper, so that zss can't locate a xel function or taglib function declared on a zul page
Spreadsheet.java
private void initBook0(SBook book) { ... if(isBelowDesktopScope(_book) && _book instanceof EvaluationContributorContainer && ((EvaluationContributorContainer)_book).getEvaluationContributor()==null){ ((EvaluationContributorContainer)_book).setEvaluationContributor(new ComponentEvaluationContributor(this)); }
public class ComponentEvaluationContributor implements EvaluationContributor,Serializable { @Override public FunctionMapper getFunctionMaper(SBook book) { if(!checkAlive() && !isBelowDesktopScope(book)){ //should contribute any thing if the scope large then desktop return null; }
- relates to
-
KEIKAI-41 Resolve a custom function under collaboration mode
- Closed