| |
| |
| |
|
Page: 1 2 3
Comments:
<0> [Torgo], the new ajax unit break my code :P ,it is better without the queue? <1> yup <2> doug has sent me a new version <2> haven't had time to go over it yet though <2> any idea what part broke it? <0> it is minor, I just checking any outstanding request in the .active and .queue to turn of my animated gifs <2> i can foward the updated version to you if you're interested <0> I am reading the code as well, try to see anything can replace that function, if not I need to keep my own count <0> I am fine with that at the moment, just wonder if you know about that. btw, I cut 1/3 of the rendering time in listgrid just by changing _***ertRow <2> i have to admit that I have not looked at it closely <2> oh yeah? <2> i need to spend a lot of time on the grid, clean up all the loose ends <0> changed all the += string to be array base <2> virtualmode is broken for all intensive purposes <0> yes ;) <2> very cool
<2> it's on my todo list for this week <2> if you have a version to merge in, please send it early so we don't branch much <0> hehhe, I seem to hear that form before <0> sure, that's why I got all the new code I am dealing with right now <2> yeah, i haven't had much free time lately <1> ht311 : unignore me <2> started playing the drums again <2> Sociopath, if you're ignored, how is he supposed to see that? :P <0> ds is eating my time too <1> [Torgo] : I am god-like, I am able to make him see what I want him to <2> alrighty then <2> let's keep you up here where i can keep an eye on ya <1> lol <1> I can make myself be devoiced in a second <2> go for it <1> see? I AM godlike <2> you sure are! <2> wow, that blows my mind <1> my will be done <2> oops <0> that's what I did last time too <2> <1> I can get myself unbanned in a secodn <2> <1> second* <2> > go for it! <2> <1> damn.. I cant <2> <1> my powers are limited <0> LOL <2> <1> I hoped you'd unban me because you realised im able to do it myself <2> :P <0> it is hard to deal with 7yrs old <0> btw, you get around to spend time on cl***ic grid? <3> huh <2> not yet <2> started running into all kinds of issues <2> v4 has become quite a different animal than 3 <0> oh, I was just curious since I saw src files <2> yeah, was recently trying to port the old grid <2> for people that don't like the way the new one works <0> there is a use for the old one if you are not into editing <2> or large datasets <4> hi guys <4> im trying to find an explanation on the javascript match() patterns, they look like nothing ive seen before, but i havent been able to find anything, any pointers to a good resource about it? <4> location.hostname.match(/(^|\.)example\.com$/) <5> looks like perl compatible regex to me.. but i'm not familiar with JS match patterns specifically <2> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/ab0766e1-7037-45ed-aa23-706f58358c0e.asp <4> thanks <4> [Torgo] will this work if( location.hostname.match(/www\.google\.+$/)) { <4> to match www.google.* ? <2> no <2> replace the $ with .* and you should be close <2> there is a regexp tester on our site too <4> oh cool <4> http://javascript-channel.com ? <2> used to be <2> looks like it's gone now <2> http://www.regular-expressions.info/javascriptexample.html <2> http://www.roblocher.com/technotes/regexp.aspx <2> that one has reference material too <2> later
<4> how do i add an element next to a link? <6> anyone around <6> ? <6> I am attempting to use a hidden frame of some sort, or maybe XMLHTTPRequest to send some data to my page and retrieve some info, and then change the contents of a page without reloading <6> what's the best way to do that? <6> balancing both backwards compatibility and functionality? <7> hello <7> anyone know how can i convert the chartocode of javascript to visual basic? <0> [Torgo], just send the changes <0> not alot, jsut 2 file <2> got it <8> Anyone alive in here? <8> Because its midnight heh <8> http://pastebin.ca/132158 -- Can someone take a look at that and tell me why its not completely working? <0> you could have just say that in the frist place <8> haha <2> yes, the whole world is in one time zone <8> Sorry, dumb question heh <8> Alright, what I'm trying to do is make a div automatically scroll down to the bottom. Once it scrolls all the way down, I want to release setInterval() by using clearInterval() -- Any ideas as of why it's not working? <2> good gravy <2> learn to use references, for starters <2> that's some crazy ineffecient code <8> Haha, thanks <8> Could you help me? I mean, afterall, thats why I'm in #javascript :) <0> setInterval(ScrollDown, 10); <0> don't use 10, it will be going to fast and not good for debugging <8> Yes, but I need to be able to use clearInterval <8> But you just used 10ms <8> I used it to be fast because I'm using XMLHTTP <2> http://pastebin.ca/132177 <0> ah... just use setTimeout instead <2> windows timers can not resolve less than 10 ms <8> Thanks Torgo, but It doesn't work :( <2> ht311, getting fancy with the loops in dataset, eh? <2> DCogburn, didn't say it di.. said it'd be more effecient <8> Visit http://dn.codehelpers.com <2> no <8> Visit http://dn.codehelpers.com/chat I mean <0> http://pastebin.ca/132179 <2> ht311, i like the loop changes -- subtle, but will shave off a few ms <0> could be more than a few for each loop, and it add up for thousand of cells <2> agreed <0> and I wrote all my loop with for(var i=0,l=a.length;i<l.... now <8> It's still not working :'( <8> Visit http://dn.codehelpers.com/chat for the page I'm trying to use it on <2> these stack changes get a bit hairy, eh? <0> don't know , check the if there alert the value, make sure the condition work <0> it is easy to change frist, it will be a bit hairy if you need to fix content after, I getting used to read push("blah") instead of + "blah" now ;) <2> looks good... testing right now <2> is this timepicker live too? <8> Thanks guys for your help -- But I did figure out how to do it the right way from ht311's code -> http://pastebin.ca/132187 <8> timepicker? <0> hehe, I am still too lazy, my qa/pm/sales guy is bugging me for that now. <2> seems to be working great -- very snappy performance <8> I got it and it's working very nicely :) Thanks guys, once again :) <0> let's hope that we see that in a month <2> yeah, i've got to get back on the wagon too <2> haven't been coding much this summer <0> sometime I just love running after performance issue. <0> there are tons of loops can be changed in the codes <0> DCogburn: learn to setTimeout(Scrolldown,100); you don't need to p*** "Scrolldown();" <2> alright, I've made your changes -- and I've added a news item about it too <8> Bah, I guess it didn't work. http://dn.codehelpers.com/chat/ <8> Oh wait. <8> Sorry guys <0> heh, you get your marketing machine running again ;) <8> Ok guys, here's the problem -- Lets see if you can even figure this one out (it's tough) <8> http://dn.codehelpers.com/chat/ -- I want the DIV to automatically scroll down when (1) The index.php is loaded and (2) when the DIV actually has a NEW message. <8> So far (1) works. <8> (2) Seems to be the probelm right now, and I'm not quite sure how to go about that mainly because the DIV is being populated by XMLHTTP every second. <8> Of if any of you know how to do string comparing. <8> That would be awesome :)
Return to
#javascript or Go to some related
logs:
vb.net device driver sdk
#AllNiteCafe #linux dang3rboy #linux #teens 12What desert has been called The Garden of Allah ? lilo 0x99 return delimiters in streamtokenizer #teens
|
|