Sunday, March 30, 2008

NearConn published the beta version


Lately, the NearConn team announced that they opened their system for a beta users.
NearConn is a unique cellular social network, it's a social network that enable the user to contact people around in any given time and place.
The main idea of the NearConn creators is to make the bluetooth name that on the cellular phone, a link to details that it's owner want to show the other,
think about it, you can share your profile or you can share your buisness details, advertise a service you offer.
it can be a new way to advertise things in a simple and cheap way...
I beileve that the idea of NearConn is exelent, usefull for milions of users and will be the next thing.
here you can watch a video of how it works : http://www.nearconn.com/demo.asp

you can sign up to nearconn here: http://www.nearconn.com/

Thursday, March 20, 2008

Programming Discussion Forums


I'm happy to announce that i opened the Blog Discussion forum.
i will add there a discussion post for all the materials on my blog.
Please feel free to help me build a rich forum.
if you think that you have an interesting material, source code, tips or tricks please share it with the other programmers.
Add your post at the related category.
thanks alot for your help and support.
the forum address is: http://www.byramix.com/blogforum

Saturday, March 01, 2008

script.aculo.us drag and sort scrolling bug

For those who uses the script.aculo.us drag and drop js libs, this is an explain for fixing a scrolling bug.
if your dragable element has a scrolling bar, when you try to scroll it also start dragging the element.
i fixed this bug, do the following steps and it will work perfectly:
open the file "dragdrop.js" for edit, after the following code:
if((tag_name = src.tagName.toUpperCase()) &&
( tag_name=='INPUT'
tag_name=='SELECT'
tag_name=='OPTION'
tag_name=='BUTTON'
tag_name=='TEXTAREA')) return;

add the following line:
if( src.undragable!=null) return;

this line means that if there's a tag in the element that called "undragable" so it wont move the element.

when you want to set an element with a scrollbar, just add the "undragable" tag to it and it will fix the problem, for example:


< d iv height="50%" width="100%"undragable style="height: 200px; overflow:auto;scrollbar-arrow-color: #808080; scrollbar-track-color: #FFFFFF; scrollbar-face-color: #FFFFFF; scrollbar-highlight-color: #808080; scrollbar-3dlight-color: #FFFFFF; scrollbar-darkshadow-color: #FFFFFF;scrollbar-shadow-color: #808080;"