Saturday, November 11, 2006

A blog for my website !

Finally, I made a seperate blog for my website ! Use this place to post comments, suggestions and questions about my website. Please enter the URL or title of webpage , you want to comment about and I'll try my best to reply.

20 comments:

Anonymous said...

Ashish,

how can I get the code to work for multiple different tables? I just copied the code fir the FIRST table and pasted it under as a NEW table. When I render the page, ONLY the TOP table collapses!

ashish said...

Diego,
If only your first table is working then you are probably trying to copy paste same code to create other tables.

No harm in doing that but make sure

1] That every table has uniqueid

[table id="some_unique_id" ...

2] The [div] tags also should have unique id's

[DIV id="unique_id" class="widgetDIV"]


3]ShowHide() should be passed the correct id of the [DIV].

[IMG onclick="ShowHide('unique_id',this)" ...


The id's of all elements on a HTML page should be unique. You can use id's like mytable1,mytable2 ....mydiv1,mydiv2 ...etc !

Hope this solves your problem

Anonymous said...

You can use videolan for a p2p relay system.

What ever your viewing on videolan can be relayed to someone else.

Anonymous said...

Hi Ashish,

I don't know whether people who have name like "Ashish" are exceptionally witty and brilliant. You proved it again buddy. I had one friend in Bangalore and he was a genius in programming. He was very good at algorithms and logic. After looking at your website, I feel that you are also very creative and present awesome topics in a simple and humble way. Keep up your great spirit. I will be visiting your site and getting ideas on Ajax and Javascript. I would like to send you personal email.
Thanks ashish

ashish said...

'You can use videolan for a p2p relay system.'

I think yes. Try using RTP Unicast and/or RTP Multicast.

Check if this link helps:

http://en.wikipedia.org/wiki/Real-time_Transport_Protocol

ashish said...

I would like to send you personal email.

Please use the email address on this page for writing personal email.
http://ashishware.com/FAQ.shtml

Inform me in case of any problems. I don't want to disclose my email address on web due to fear of spam.

Anonymous said...

hi Ashish,
I have one problem with my DND in DOJO. Actually its not a problem but i m not getting how to do it.
I want to drag an item from source and copy it on destination. But i dont want it to b removed from source. Is there any way??
Thanks.

ashish said...


"I want to drag an item from source and copy it on destination. But i dont want it to b removed from source. Is there any way??"

Hi,
Sorry for late reply.

Check out these pages :
http://ashishware.com/Dojo_Copy.shtml
http://ashishware.com/DnCopy.html

Hope above links solve your problem.

Regards,
Ashish

Vishal said...
This comment has been removed by a blog administrator.
ashish said...

"
Your collection is very nice.

I am pusuing my mca 6-sem project and i am using Microsoft AJAX controls
like collapsible panels, drag panel , Accodion control etc

I want to add different client side properties like MouseOverCSS and MouseOutCSS etc

Can u tell me how to create simple web control of my own with client side property

where should i begin
"

If I understand you correct, simplest way you might achieve it is using:

myLink.Attributes.Add("onmouseover",this.MouseOverCSS )

Where myLink is a link inside your control or a [div] tag and you can make MouseOverCSS , MouseOutCSS public properties of your control , which the user is expected to supply.

They should be names of javascript functions.

Unknown said...
This comment has been removed by a blog administrator.
Anonymous said...

http://ashishware.com/Tooltip.shtml

It says it works with IE + FF.

Also works with Opera 9.

ashish said...

"http://ashishware.com/Tooltip.shtml
It says it works with IE + FF.
Also works with Opera 9."


I never tested that. Many, many thanks for sharing that information.

Anonymous said...

Hi can u tell me difference between
dynamic html and ajax...

Anonymous said...

Hey Ashish buddy!!

Awesome work man.... This is amazing work... BTW, the game that u had developed looks real cool for a first timer... :) Is it possible for u to share the game, so that we can have some fun? ;)

Wishing you all the best... and I am into GUI development as well... Used a lot of prototype and made a lot of custom frameworks... Will try spending my spare time in getting some useful stuff done and send it to u or share them here to all the viewers....

Have fun...

Arvind R

Nasser Hamdan said...

Hi Ashish,

I have downloaded the code you made of the SilverLight graph which simplay amazing, and i want to be able run it and modify it on my own, i have downloaded VC# 2008, and added you source files there, then tried to run the application but it generates this error:

The type 'Canvas' was not found. Verify that you are not missing an assembly reference and
that all referenced assemblies have been bui

Do u have anyidea why this hapenning?

Thanks,

ashish said...

Hi Nasser,
Were you able to see the online javascript demos posted here:

http://ashishware.com/SlvrGraphDemo.shtml

If you can see it working on your system without problems, then I see no reason why the downloaded code should not work.

From your description it seems that VS 2008 is trying to something with the XAML (parse or compile), which is resulting in the error (on server side I guess).

Instead of running it from VS 2008, why don't you try running it directly from IIS (deploy using xcopy).

Frankly, I haven't tried VS2008. VS2005 Express Edition just works fine. I'll try to check the issue with VS2008 when I get an opportunity !

Bongu Sridhar said...

question about tooltip using iframe

Hi, I have tried the sample in your website about using iframes for tooltip. everything works perfectly. I have a request for you. when the user hovers the mouse over the link, it is displaying the tooltip. What I would like to do is to keep the tooltip visible if the user moves the mouse from link to the tooltip. It would be similar to contact details tooltip on the left side of the gmail. In that way the user hovers the mouse on the link and gets the tooltip. then he moves his mouse on to the tooltip and perform actions like clicking a button inside the iframe. Please let me know.

Anonymous said...

Hi Ashish,
I would like to know how to keep a control/button to move on browser on scroll up and down. I tried with javascript and I could able to manage only onclick of the mouse but how do I catch scrollup/down event or ppl can just drag the scroll bar to a specific position in that case I want a button to be visible irrespective of the scroll bar position.

I tried below onClick of mouse:
var btnpos=Math.round(Math.abs(document.getElementById("ID1").style.top.replace(/px/,""))+70);
document.getElementById("ID1").style.top=btnpost+"px";

Shobhi said...

Hi Ashish,
I was trying to make a button visible to the user on scroll up/down of the window using JS. I could able to fo only onClick event, how do I implement this on scroll,drag up/down events.

Used below code onClick:
var btnpos=Math.round(Math.abs(document.getElementById("tt1").style.top.replace(/px/,""))+70);
document.getElementById("tt1").style.top=btnpost+"px";