Click here to Skip to main content
15,898,984 members
Home / Discussions / Web Development
   

Web Development

 
QuestionHow to use webservice using REST Pin
Manoj kumar jain12-Apr-06 20:04
Manoj kumar jain12-Apr-06 20:04 
Questionasp.net ImageMap Pin
mastjabs12-Apr-06 12:40
mastjabs12-Apr-06 12:40 
QuestionHow to create link from one page to a certain section in another Pin
jmfekete12-Apr-06 4:27
jmfekete12-Apr-06 4:27 
AnswerRe: How to create link from one page to a certain section in another Pin
J4amieC12-Apr-06 4:42
J4amieC12-Apr-06 4:42 
GeneralRe: How to create link from one page to a certain section in another Pin
jmfekete12-Apr-06 5:19
jmfekete12-Apr-06 5:19 
AnswerRe: How to create link from one page to a certain section in another Pin
titoni14-Apr-06 4:38
titoni14-Apr-06 4:38 
QuestionDrag and drop in Mozilla Pin
russellsoft11-Apr-06 3:11
russellsoft11-Apr-06 3:11 
AnswerRe: Drag and drop in Mozilla Pin
russellsoft12-Apr-06 21:01
russellsoft12-Apr-06 21:01 
I did it myself... For example it can be looking like follow:

<html><br />
<head><br />
</head><br />
<body><br />
<br />
<a href="#" onmousedown='TryDragStart()' onmousemove='DragStart()'><br />
    <table><br />
        <tr><br />
            <td>Row1</td><br />
            <td>Row2</td><br />
        </tr><br />
    </table><br />
</a><br />
<br />
</body><br />
</html><br />
<br />
<br />
<script language="javascript"><br />
<br />
    document.onmouseup = DragStop;<br />
    <br />
    var dragTried = false;<br />
<br />
    function TryDragStart()<br />
    {<br />
        dragTried = true;<br />
    }<br />
    <br />
    function DragStop()<br />
    {<br />
        dragTried = false;<br />
    }<br />
    <br />
    function DragStart()<br />
    {<br />
        if (dragTried)<br />
        {<br />
	        netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');<br />
            <br />
            var dragService = Components.classes["@mozilla.org/widget/dragservice;1"].getService(Components.interfaces.nsIDragService);<br />
            var trans = Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interfaces.nsITransferable)<br />
            trans.addDataFlavor("text/unicode");<br />
            <br />
            var textData = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);<br />
            textData.data = "Done!!!";<br />
            <br />
            trans.setTransferData("text/unicode", textData, textData.data.length * 2);<br />
            <br />
            var transArray = Components.classes["@mozilla.org/supports-array;1"].createInstance(Components.interfaces.nsISupportsArray);<br />
            transArray.AppendElement(trans);<br />
            <br />
            dragService.invokeDragSession(dragService.TEXT_NODE, transArray, null, dragService.DRAGDROP_ACTION_COPY);<br />
	    }<br />
    }<br />
<br />
</script>

QuestionIntranet Process Flow Pin
Tim Carmichael11-Apr-06 3:09
Tim Carmichael11-Apr-06 3:09 
Questionaccess to crystal report denied Pin
Krish_Learner11-Apr-06 2:15
Krish_Learner11-Apr-06 2:15 
AnswerRe: access to crystal report denied Pin
titoni14-Apr-06 4:34
titoni14-Apr-06 4:34 
QuestionOnline Radio Pin
Junyor11-Apr-06 2:02
Junyor11-Apr-06 2:02 
QuestionInput Text Mask Pin
jcrussell10-Apr-06 14:22
jcrussell10-Apr-06 14:22 
AnswerRe: Input Text Mask Pin
alexey N10-Apr-06 19:31
alexey N10-Apr-06 19:31 
AnswerRe: Input Text Mask Pin
WoutL11-Apr-06 1:59
WoutL11-Apr-06 1:59 
GeneralRe: Input Text Mask Pin
jcrussell19-Apr-06 21:39
jcrussell19-Apr-06 21:39 
Questiondiv style.height Pin
CoolASL10-Apr-06 7:16
CoolASL10-Apr-06 7:16 
AnswerRe: div style.height Pin
Guffa10-Apr-06 8:42
Guffa10-Apr-06 8:42 
GeneralRe: div style.height Pin
CoolASL11-Apr-06 4:14
CoolASL11-Apr-06 4:14 
AnswerRe: div style.height Pin
Guffa11-Apr-06 4:20
Guffa11-Apr-06 4:20 
GeneralRe: div style.height Pin
CoolASL11-Apr-06 4:30
CoolASL11-Apr-06 4:30 
QuestionJSP NOTES Pin
pradeepbhat10-Apr-06 7:10
pradeepbhat10-Apr-06 7:10 
QuestionHow does Eolas Patent Lawsuit affect the way .NET Web Controls' behavior? Pin
Hashir Zuberi10-Apr-06 1:25
Hashir Zuberi10-Apr-06 1:25 
GeneralRe: How does Eolas Patent Lawsuit affect the way .NET Web Controls' behavior? Pin
Guffa10-Apr-06 2:35
Guffa10-Apr-06 2:35 
QuestionWhy do not Upload a file on host by ASP Pin
Thangnc10-Apr-06 0:19
Thangnc10-Apr-06 0:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.