jsf - Using PrimeFaces editor in a TabView with dynamic set to false -


it seems adding p:editor tabview dynamic="false" fails initialize editor unless in first tab. tried adding

ontabshow="handletabshow(tab)"  function handletabshow(tab) {     if (tab.index() === 7) {         editorwidgetvar.init();     } } 

to tabview, fails initialize editor. have same problem ontabchange. know how primefaces editor load in context?

my issue not adding editorwidgetvar.cfg parameter init() function. if works...seems weird there isnt simpler, less hacky way editor display...


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -