you are an amazing person all around I will try that plugin to see what 
happens. In the mean time...what do you do for a living? or what is your 
profession...just curious really more than anything :).


Thanks again and keep me posted on your calculator!!!! 

Also if you ever need a tester I am here!

On Friday, July 6, 2012 10:15:29 AM UTC-5, Vincent Yeh wrote:
>
> anthony,
>
> I am very happy to know it works!
>
> For the calculation things, I am also working on a TableCalculator plugin 
> but its not ready to release and I have no clear date for that yet.
>
> The TableCalculator plugin is modified from 
> http://www.TiddlyTools.com/#ColumnCalculatorPlugin v 0.6.2 by Eric 
> Shulman. Maybe you can try that one?
>
> Vincent
>
> 2012/7/6 anthony <[email protected]>
>
>> NOOOO
>> YOU
>> ARE
>> AMAZING
>> the newest version you have created is working PERFECTLYYYYYYYY I AM 
>> DANCING OVER HERE!!!!!
>>
>> okay...one thing my boss would also want and again I am severely at your 
>> debt is "calculations" we have a "days in" cell that basically tells us how 
>> many days a computer has been in house, =today()-B3 is the formula. b3 
>> is the cell we put in the date as. IS there any way for us to integrate 
>> that? I know there is a plugin out there that does do simple calculations...
>>
>>
>> On Friday, July 6, 2012 9:46:46 AM UTC-5, Vincent Yeh wrote:
>>>
>>> anthony,
>>>
>>> I guess I'll need to try it real to know what's going on. Which web 
>>> based service are you using? Or which one you suggest me to try? I have 
>>> never used one before so have no idea about it.
>>>
>>> Vincent
>>>
>>> 2012/7/6 anthony <[email protected]>
>>>
>>>> Yes I have that tiddler set up and running. it works great but just not 
>>>> with the editing of the inline boxes. so when I hit "enter" it says I can 
>>>> not save it...I want that to push to "uploadtiddler" plugin...is that 
>>>> possible?
>>>>
>>>> On Sunday, July 1, 2012 9:29:58 AM UTC-5, Vincent Yeh wrote:
>>>>>
>>>>> anthony,
>>>>>
>>>>> did you try this one 
>>>>> <http://tiddlywiki.bidix.info/****#UploadTiddler<http://tiddlywiki.bidix.info/#UploadTiddler>>?
>>>>>  
>>>>> it seems to be the one you need?
>>>>>
>>>>> Vincent
>>>>>
>>>>> On Thursday, June 28, 2012 10:08:38 PM UTC+8, anthony wrote:
>>>>>>
>>>>>> That does make sense, and I really really appreciate the time effort 
>>>>>> and replys you have provided!
>>>>>>
>>>>>> Maybe I can provide SOME insight into what I am trying to accomplish 
>>>>>> and help this along the way. I am using a second plugin called "upload 
>>>>>> plugin" 
>>>>>> (http://tiddlywiki.bidix.info/****#UploadPlugin<http://tiddlywiki.bidix.info/#UploadPlugin>)
>>>>>>  
>>>>>> There is a "macro" that is for "save to web" that would (i think) need 
>>>>>> to 
>>>>>> be pointed to for the enter function you created. So instead of it 
>>>>>> trying 
>>>>>> to "save" it will just punch save to web instead? I don't know...
>>>>>>
>>>>>> Thank you very very much!
>>>>>>
>>>>>> On Monday, June 25, 2012 8:09:22 PM UTC-5, Vincent Yeh wrote:
>>>>>>>
>>>>>>>
>>>>>>> Anthony, thank you for trying the plugin and giving feedbacks. And 
>>>>>>> for your last question on uploading, I have no idea how to do that 
>>>>>>> currently (I have experiences in programming but not much in javascript 
>>>>>>> and 
>>>>>>> the web things.) It will take me sometime to figure out. If someone has 
>>>>>>> answers and would like to contribute, it will be highly appreciated.
>>>>>>>
>>>>>>> Eric, thank you for pointing out the key point which I never knew 
>>>>>>> myself.
>>>>>>>
>>>>>>> I have been using Google Chrome for the development of this plugin 
>>>>>>> (inspired by and modified from TableSortingPlugin v2.0.2 by Saq Imtiaz 
>>>>>>> and GridPlugin v2.0.7 by Eric Shulman. Many thanks to them.) It seems 
>>>>>>> to 
>>>>>>> work just fine for me and I turned out to forget about other browsers. 
>>>>>>> Next 
>>>>>>> time I will try them out myself but as mentioned above most likely I do 
>>>>>>> not 
>>>>>>> have the knowledge to fix the cross-browser things. I shall be relying 
>>>>>>> on 
>>>>>>> more experienced people to do that.
>>>>>>>
>>>>>>> Vincent
>>>>>>>
>>>>>>> On Tuesday, June 26, 2012 2:05:25 AM UTC+8, anthony wrote:
>>>>>>>>
>>>>>>>> Last question...sorry for so much spam...
>>>>>>>>
>>>>>>>> I am using this wiki as a webbased system, when I edit the table I 
>>>>>>>> would like for it to upload to the web versus to a local file...is 
>>>>>>>> there 
>>>>>>>> anyway for that to be done?
>>>>>>>>
>>>>>>>> On Monday, June 25, 2012 12:55:56 PM UTC-5, anthony wrote:
>>>>>>>>>
>>>>>>>>> spamming...sorry
>>>>>>>>>
>>>>>>>>> I fixed the issue with IE, it was a version issue. I was using IE8 
>>>>>>>>> (preferred over here) but upgraded to 9 and it is working PERFECTLY. 
>>>>>>>>> this 
>>>>>>>>> plugin is going to make our tiddlywiki amazing in terms of what we 
>>>>>>>>> were 
>>>>>>>>> trying to do.
>>>>>>>>>
>>>>>>>>> So in short I think IE8 may not work properly with this plugin.
>>>>>>>>>
>>>>>>>>> On Monday, June 25, 2012 12:22:23 PM UTC-5, Eric Shulman wrote:
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Jun 25, 8:23 am, anthony <[email protected]> 
>>>>>>>>>> wrote: 
>>>>>>>>>> > Just tried your plugin...am I missing something? I loaded the 
>>>>>>>>>> plugin and 
>>>>>>>>>> > tried your example both on my tiddly and yours and neither were 
>>>>>>>>>> > editable...maybe I am just missing something though. 
>>>>>>>>>>
>>>>>>>>>> The plugin works in IE, but not in FF or other browsers. 
>>>>>>>>>>
>>>>>>>>>> The reason is because IE uses a different method of processing 
>>>>>>>>>> events.  In IE, all events are processed by first setting a 
>>>>>>>>>> global 
>>>>>>>>>> variable "event" and then invoking the appropriate onclick 
>>>>>>>>>> handler to 
>>>>>>>>>> process the event.  However, in other browsers, the event is 
>>>>>>>>>> *passed* 
>>>>>>>>>> to the handler as a parameter. 
>>>>>>>>>>
>>>>>>>>>> The plugin problem arises due to this line of code: 
>>>>>>>>>>
>>>>>>>>>>    cell.onclick = function(){editInPlace(this,**ev**ent);}; 
>>>>>>>>>>
>>>>>>>>>> In order to make this cross-browser compatible, it should be re- 
>>>>>>>>>> written as: 
>>>>>>>>>>
>>>>>>>>>>    cell.onclick = function(ev){editInPlace(this,****ev|event);}; 
>>>>>>>>>>
>>>>>>>>>> This allows non-IE browsers to properly use the passed in event 
>>>>>>>>>> as a 
>>>>>>>>>> variable named 'ev', while IE continues to fallback to using the 
>>>>>>>>>> global 'event' variable. 
>>>>>>>>>>
>>>>>>>>>> enjoy, 
>>>>>>>>>> -e 
>>>>>>>>>> Eric Shulman 
>>>>>>>>>> TiddlyTools / ELS Design Studios 
>>>>>>>>>>
>>>>>>>>>> WAS THIS ANSWER HELPFUL?  IF SO, PLEASE MAKE A DONATION 
>>>>>>>>>>    
>>>>>>>>>> http://www.TiddlyTools.com/#**D**onations<http://www.TiddlyTools.com/#Donations>
>>>>>>>>>>  
>>>>>>>>>> Professional TiddlyWiki Consulting Services... 
>>>>>>>>>> Analysis, Design, and Custom Solutions: 
>>>>>>>>>>    
>>>>>>>>>> http://www.TiddlyTools.com/#**C**ontact<http://www.TiddlyTools.com/#Contact>
>>>>>>>>>>  
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  -- 
>>>> 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/-/MUSX6ah2wCMJ<https://groups.google.com/d/msg/tiddlywiki/-/MUSX6ah2wCMJ>
>>>> .
>>>> To post to this group, send email to [email protected].
>>>> To unsubscribe from this group, send email to tiddlywiki+unsubscribe@**
>>>> googlegroups.com <tiddlywiki%[email protected]>.
>>>> For more options, visit this group at http://groups.google.com/**
>>>> group/tiddlywiki?hl=en<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 view this discussion on the web visit 
>> https://groups.google.com/d/msg/tiddlywiki/-/vGTOWiHwW0QJ.
>>
>> 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 view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/5OZmkdkCs18J.
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.

Reply via email to