|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.month {
width:50px;
background:#000066;
color:#FFFFFF;
display:inline-block;
float:left;
border:1px solid #ffffff;
text-align:center;
cursor:pointer;
}
.month:hover{
background-color:#FF6600;
}
</style>
<script type="text/javascript">
function setmonth(x){
document.getElementById('chosenmonth').value = x;
}
function setyear(x){
document.getElementById('chosenyear').value = x;
}
function yearplus(){
document.getElementById('year').value++;
document.getElementById('chosenyear').value = document.getElementById('year').value;
}
function yearminus(){
document.getElementById('year').value--;
document.getElementById('chosenyear').value = document.getElementById('year').value;
}
</script>
</head>
<body>
<div style="text-align:center; width:624px; margin:auto;">
<form id="form1" name="form1" method="post" action="">
<div class="month" name="yearminus" id="yearminus" tabindex="1" onclick="yearminus()"> < </div>
<input id="year" name="year" value="2009" style="float:left" />
<div class="month" name="yearplus" id="yearplus" tabindex="2" onclick="yearplus()"> > </div><br /><br />
<div class="month" onclick="setmonth('Jan')"> Jan </div>
<div class="month" onclick="setmonth('Feb')"> Feb </div>
<div class="month" onclick="setmonth('Mar')"> Mar </div>
<div class="month" onclick="setmonth('Apr')"> Apr </div>
<div class="month" onclick="setmonth('May')"> May </div>
<div class="month" onclick="setmonth('Jun')"> Jun </div>
<div class="month" onclick="setmonth('Jul')"> Jul </div>
<div class="month" onclick="setmonth('Aug')"> Aug </div>
<div class="month" onclick="setmonth('Sep')"> Sep </div>
<div class="month" onclick="setmonth('Oct')"> Oct </div>
<div class="month" onclick="setmonth('Nov')"> Nov </div>
<div class="month" onclick="setmonth('Dec')"> Dec </div>
<input type="text" id="chosenmonth" value="Jan" />
<input type="text" id="chosenyear" value="2009" />
</form>
</div>
</body>
</html>
|
|
|
|
|
That should get you started
|
|
|
|
|
|
Hi
i'am looking to program a web service with netbeans (easiest way using jax), but in the web service source i have to call python code, i tried to install plugins for that i found jython and i don't know how integrate it in netbeans, i used nbpython, but it seems that it's not possible to have java code and python code using
i don't know need some help please
thanks
|
|
|
|
|
I have a Flash movie on a web page and I want to send parameters to it with JavaScript to have it go to a selected frame. The AS3 code receives its information via an ExternalInterface API. The following code parses the URL argument (?page=x ) and I want to send the value (x) to Flash. Unfortunately, when creating the objMovie variable, it is always undefined, therefore getFlashMovie is undefined and Flash never receives the callback.
Thinking that it was because the flash movie is not loaded yet, I created a button to call callToActionscript, and when I click the button, I get the same error. (getFlashMovie("myFlashMovie") is undefined)
I am not seeing what I'm doing wrong (mainly because I'm a newbie...). Please enlighten me.
Also, if (params) always returns true, whether there are parameters or not. I don't understand that, either.
The code follows:
<script type="text/javascript">
$(document).ready(function() {
var params=getQueryParameters();
if(params) {
callToActionscript(params[0]);
}
});
function getFlashMovie(movieName) {
var isIE = navigator.appName.indexOf("Microsoft") != -1;
var objMovie = (isIE) ? window[movieName] : document[movieName];
alert(objMovie);
return objMovie;
}
function callToActionscript(page)
{
var myMovie=getFlashMovie("myFlashMovie").sentToActionscript(page);
}
function getQueryParameters() {
var query = window.location.href.split('?')[1];
if(!query) {
return { };
}
else
{
var param = query.split('=');
}
return param[1];
}
</script>
|
|
|
|
|
hi , i have i web site , i have a text box and button , when i type user name in text box a dialog warn appear for remote user , how i can do this ?
|
|
|
|
|
re7et_3esh wrote: dialog warn appear for remote user
I'm not excatly sure what you mean by this, but if you subscribe to the onblur event of the textbox you can display an alert window.
only two letters away from being an asset
|
|
|
|
|
hi man , i know that , but how i can allow dialog appear to particular user? for example
i type ur nick in text box and say "Hello!!!"and click submit button , then a dialog warn appear for u
|
|
|
|
|
re7et_3esh wrote: allow dialog appear to particular user?
Still not clear here.
1) In the code behind you check which user the page is being rendered for than attached the javascript event to the textbox as appropriate
or
2) Make an Ajax call from the onblur event to determine if the alert box should be displayed or not
only two letters away from being an asset
|
|
|
|
|
thank u man alot , can u give me simple example?
|
|
|
|
|
Try here[^]
only two letters away from being an asset
|
|
|
|
|
use a javascript alert box/confirm box?
|
|
|
|
|
hi man , i know that , but how i can allow dialog appear to particular user? for example
i type ur nick in text box and say "Hello!!!"and click submit button , then a dialog warn appear for u
|
|
|
|
|
<html>
<head>
<script>
function check(){
if (document.getElementById('mytext') == "Hello!!!"){
alert("You said 'hello!!!'");
}
}
</script>
</head>
<body>
<input id="mytext" type="text" onkeyup="check()" />
</body>
</html>
|
|
|
|
|
Are you basically trying to write a chat room kind of thing?
So, if I enter re7et_3esh hello in my browser, hello will popup in your browser?
|
|
|
|
|
hi man , no not chat
example i have a web form , and i want to send dialog warn to user who is nick name is re7et_3esh by entring his nick name in text box , then a dialog warn in java script appear for him , its possible?
|
|
|
|
|
Hey there i have been working on a problem for many hours and i got tired. The problem is that on row databound or on row editing the FindControl method returns null for my control which is found in the edit item template. Any help???
|
|
|
|
|
Try this Code
HyperLink txtMember = (HyperLink)(e.Item.FindControl("controlname"));
if still not working, Post your Code
|
|
|
|
|
thanks but i found the solution it is the same as u did but my rpoblem was i used different control id. that was my problem
|
|
|
|
|
Hi All,
I'm trying to get a button which looks exactly the same whether it is enabled or disabled, but whenever I disable the button it seems to ignore any font styles I have set. This seems to be the case in IE but not other browsers.
So does anybody know the CSS to change a disabled button so that the font is not embossed?
Thanks in advance,
Chris
|
|
|
|
|
not sure about css on a disabled button but you could use an image for your button and control it with javascript.
<script>
var disabled = 0;
function myButtonFunction(){
if (disabled = 0) {
disabled = 1;
document.getElementById('myBtn').src = "mydisabledimage.jpg";
//do something here
}
}
</script>
<input type="image" id="myBtn" src="myimage.jpg" onclick="myDisableButtonFunction()" />
|
|
|
|
|
Thanks for the response, Marc. I am trying to avoid going down that route if I possibly can because:
- I am deploying in an old version of SharePoint, and it doesn't play nice with JS
- I need buttons to be resizeable
Anybody have any other thoughts?
Thanks,
Chris
|
|
|
|
|
alternatively you could hide the button using css?
display:none;
visibility:hidden;
|
|
|
|
|
I thought about doing that, but it would kinda mess up how the page looks.
Basically what happens at the moment is that the user clicks a search button, I display the search options/results in a seperate div which is overlayed on top of the rest of the page. When this happens I switch to a darker style sheet to show that the rest of the page is greyed out. If I were to remove (from the users perspective) buttons as well it would look a bit odd.
Thanks,
Chris
|
|
|
|
|
you could always unhide an image of a disabled button in its place
display:inline;
visibility:visible;
|
|
|
|