By the way both of those plugins are great looking but they just werent for what I was looking for...but darn close. It seems so many people create plugins for specific needs sometimes you think it is going to do what you need and then it is just a bit different...I think that is why I enjoy tiddlywiki though.
You have been very helpful :) I may need these plugins down the road it looks like too. On Friday, July 13, 2012 10:16:27 AM UTC-5, whatever wrote: > > Hi! > > I don't know how much it will help you, but I use the FatSlicePlugin > in my CrewListPlugin (1) as a dependency. > > (1) http://crewlist.tiddlyspot.com/ > > w > > On 13 jul., 16:33, anthony <[email protected]> wrote: > > Well that would be great too! I am all for changing up the > implementation. > > Essentially what we are trying to accomplish is if a customer brought in > a > > system 3 days ago and is still in intake and has not been diagnosed we > want > > to be able to see that with ease. Instead of trying to go okay today is > the > > 15th and they dropped it off on the 12th..how many days? We can just see > 3 > > days or what have you. I would not mind that being in the same cell just > I > > don't know how that would implement very well. I guess do you have an > > example I could toy with? > > > > You guys are awesome btw. > > > > > > > > On Thursday, July 12, 2012 11:34:49 AM UTC-5, Vincent Yeh wrote: > > > > > anthony, > > > > > Do you mean to take info from one table to do calculations and show > the > > > results in another? No, such cross table calculations are not planned > in my > > > TableCalculator plugin. It will only do calculations on information > within > > > the same table, at least for the first few releases. > > > > > It will support time and date calculations for sure, things like what > you > > > mentioned should be possible. I will let you know when something is > ready > > > for testing. Thanks for your offer. > > > > > Vincent > > > > > On Thursday, July 12, 2012 11:39:55 PM UTC+8, anthony wrote: > > > > >> Hey Vincent, I know you are being awesome and helping out this other > guy. > > >> And I know I have asked a lot from you...but did you happen to find > anyway > > >> of being able to take one table with date and time and have another > table > > >> show how many days that is? So like if a customer brought in a > computer on > > >> the 10th and today is the 12th, is there anyway for there to be a > > >> calcuation within the "excel" like spreadsheet that would show 2 > days? > > > > >> Thanks again, this is no longer a mission critical issue though so if > > >> there is no fix that is fine and I would love to help test anything > new > > >> yall are developing. > > > > >> On Tuesday, July 10, 2012 10:01:43 AM UTC-5, Vincent Yeh wrote: > > > > >>> Typo in my last post. The piece of codes you are looking for, W, is > > > > >>> var tid = story.getTiddler( Story.prototype.tEditing_title ); > > >>> if ( tid ) { > > >>> var tables = tid.getElementsByTagName("TABLE"); > > >>> if ( tables ) { > > >>> remove_edit_buttons(tables[Story.prototype.tEditing_ndx]); > > >>> addClass ( tables[Story.prototype.tEditing_ndx], 'servedtable' ); > > >>> } > > >>> } > > > > >>> The red text above is probably what you are adding in. > > > > >>> V > > > > >>> On Tuesday, July 10, 2012 9:49:38 PM UTC+8, Vincent Yeh wrote: > > > > >>>> W, > > > > >>>> I see, you are missing the table element to restore your > servedtable > > >>>> class. You need to go toggleEditMode() function, look for the > following > > >>>> piece of codes: > > > > >>>> If ( tid ) { > > >>>> var tables = getElementsByTagName("TABLE"); > > >>>> if ( tables ) > > >>>> remove_edit_buttons ( tables[Story.prototype.tEditing_ndx] > ); > > >>>> } > > > > >>>> Then add your line to the if ( tables ) block as follows: > > > > >>>> If ( tid ) { > > >>>> var tables = getElementsByTagName("TABLE"); > > >>>> if ( tables ) { > > >>>> remove_edit_buttons ( tables[Story.prototype.tEditing_ndx] > ); > > >>>> addClass ( tables[Story.prototype.tEditing_ndx], > 'servedtable' > > >>>> ); > > >>>> } > > >>>> } > > > > >>>> I hope this solves your problem :-) > > > > >>>> V > > > > >>>> whatever 於 2012年7月10日星期二寫道: > > > > >>>>> Yes, I know which functions :), and I got it to disable my style, > but > > >>>>> I couldn't get it to reenable it. I will take another look though. > > >>>>> Also, since you made the plugin work with the table sorting > plugins, > > >>>>> could you maybe import both plugins to your space and set up an > > >>>>> example for each? Like TableEdit--Example, which is nicely > showcasing > > >>>>> the functionalities. > > >>>>> w > > > > >>>>> On Jul 10, 12:54 pm, Vincent Yeh <[email protected]> wrote: > > >>>>> > W, > > > > >>>>> > You can try to put that line of code in remove_edit_buttons(), > which > > >>>>> is the > > >>>>> > function to disable the editing features. I planned to rename it > to > > >>>>> > stop_editing() or something like that in the next major release. > > > > >>>>> > The function to enable editing features is currently > > >>>>> > prepare_edit_buttons(), which shall be renamed as well to > > >>>>> start_editing() > > >>>>> > or something similar. > > > > >>>>> > Enjoy! > > > > >>>>> > Vincent > > > > >>>>> > whatever 於 2012年7月10日星期二寫道: > > > > >>>>> > > Hi, Vincent, > > > > >>>>> > > This is a kickass plugin that I'm looking forward to using.:D > I was > > >>>>> > > wondering one thing, though, does it set some sort of flag or > > >>>>> > > something when in table edit mode? For example, I use a CSS > class > > >>>>> > > (servedtable) to hide the first column. Now, I can assign both > > >>>>> classes > > >>>>> > > (servedtable and editable) to the table, but I'd like to > disable > > >>>>> the > > >>>>> > > servedtable class when in table edit mode. I played around > with the > > >>>>> > > code a little and found where I can insert a line to disable > the > > >>>>> > > servedtable class, but the problem is, it doesn't reenable it > > >>>>> after I > > >>>>> > > exit the table edit mode and I'm not sure where to insert a > line > > >>>>> that > > >>>>> > > would do that. > > > > >>>>> > > And ideas how to go about this? > > > > >>>>> > > w > > > > >>>>> > > On Jul 5, 5:46 pm, Vincent Yeh <[email protected]> wrote: > > >>>>> > > > Craig, > > > > >>>>> > > > Do you mean my TableEdit--Example tiddler? I though I made > it > > >>>>> private! > > >>>>> > > > Well, I just removed the <<sum...>> macro and made it > public, > > >>>>> you can try > > >>>>> > > > it again. > > > > >>>>> > > > The <<sum...>> macro is defined in another TableCalculator > > >>>>> plugin which > > >>>>> > > is > > >>>>> > > > under development and not yet released. > > > > >>>>> > > > Vincent > > > > >>>>> > > > 2012/7/5 Craig in Calgary <[email protected]> > > > > >>>>> > > > > Where is the <<sum...>> definition used in your example > > >>>>> tiddler? > > > > >>>>> > > > > -- > > >>>>> > > > > You received this message because you are subscribed to > the > > >>>>> Google > > >>>>> > > Groups > > >>>>> > > > > "TiddlyWiki" group. > > >>>>> > > > > To view this discussion on the web visit > > >>>>> > > > >https://groups.google.com/d/msg/tiddlywiki/-/emA1IQo6h0MJ. > > >>>>> > > > > To post to this group, send email to > > >>>>> [email protected]. > > >>>>> > > > > To unsubscribe from this group, send email to > > >>>>> > > > > [email protected]. > > >>>>> > > > > For more options, visit this group at > > >>>>> > > > >http://groups.google.com/group/tiddlywiki?hl=en. > > > > >>>>> > > > -- > > >>>>> > > > Wang-Chi Vincent Yeh, Assistant Professor > > >>>>> > > > Department of Physics, National Dong Hwa University > > >>>>> > > > Tel: 8633719 (O) 8633723 (Lab) > > > > >>>>> > > -- > > >>>>> > > You received this message because you are subscribed to the > Google > > >>>>> Groups > > >>>>> > > "TiddlyWiki" group. > > >>>>> > > To post to this group, send email to > [email protected]. > > >>>>> > > To unsubscribe from this group, send email to > > >>>>> > > [email protected]. > > >>>>> > > For more options, visit this group at > > >>>>> > >http://groups.google.com/group/tiddlywiki?hl=en. > > > > >>>>> > -- > > >>>>> > Wang-Chi Vincent Yeh, Assistant Professor > > >>>>> > Department of Physics, National Dong Hwa University > > >>>>> > Tel: 8633719 (O) 8633723 (Lab) > > > > >>>>> -- > > >>>>> You received this message because you are subscribed to the Google > > >>>>> Groups "TiddlyWiki" group. > > >>>>> To post to th > > > > >>>> -- > > >>>> Wang-Chi Vincent Yeh, Assistant Professor > > >>>> Department of Physics, National Dong Hwa University > > >>>> Tel: 8633719 (O) 8633723 (Lab) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywiki/-/ELHGR5DOYT8J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

