Yuom Theara
Yuom Theara
You could do this in `Template` ```js // HTML {{> tabular table=TabularTables.Books selector=selector...........}} // JS Template.myTemplate.onCreated(function(){ this.dataState = new ReactiveVar(); }); Template.myTemplate.helpers({ selector() { return {author: Template.instance().dataState.get()}; } }); Template.myTemplate.events({...
not clear, but I thinks that you could use `Session` instead. ```js // common ..... = new Tabular.Table({ // other properties... selector(userId) { return { documentOwner: Session.get('data') }; } });...
could you try ```js // common ..... = new Tabular.Table({ // other properties... selector(userId) { if(Meteor.isClient){ return { documentOwner: Session.get('data') }; } } }); ```
Oh, How the solution?
I tried `selectize`, but have any problem withe `onchage` order. for example I have 2 `selectize` and when I on change the first to change value of the second, it...
Look great, it work fine on success hook. But I still have problem with `onError` (all `select2` is clear).
I down't want to use `Nested Provider`, and could use each others ```js function App() { return ( < Posts /> // Others Provider ); } ```
thanks for your reply. for example I have many context ```js - Articles - Posts - Comments - Tasks ``` And then I will config its on `App` startup ```js...
It show incorrect date value on textbox.
Is still alive?