hi all,
this is the javascript.
var url = "http://google.com/gmap.jsp?uid="+userid+"&lat="+lat;
GDownloadUrl(url,function(doc){});
howtochange from get to post?
any idea?
thanks
Is there any framework, whick allows to mock concrete classes, not only interfaces in java 1.4? I have third party code with a singleton class, where I wanna change one function, without touching orignal code. Is it possible?
Hello,
I have joomla Site, I want to block some countries while making product order.It is possible like as soon as country zip code change, the person not able to place a order. Thanks in advance
could anybody knows any alternatives to progressbar?
Inmy project im using progressbar..I would like tochange it to something like a rotating gif image which indicates the processing or someother labels which prevents the user from interacting tothe program.I tried to implement the gif image by using background worker but its hanging may be coz of huge file transfer process..
So im searching for someother alternative like a label which will disable the content and prevent the user to interact with the program.
Could anybody help me on this?
Hi,
i have a dialog box with 2 text inputs.Dialog has 2 buttons ok/cancel
What i want is when open the dialog and input 1 has a value of "pets" and change it to "animals" when click ok holds the new value (animals) but when click the cancel return to old value (pets).
Any help appreciated
I want to move my application settings out of XAML and into a config file. For example, ToolTips and Content strings for Buttons/CheckBoxes and Labels. Is this the job of a ResourceDictionary, or should I use the App.Config or Settings.settings file?
The ToolTips and Content strings are not really per user, they are more Application wide and may change if the UI is internationalized.
Thanks!
All I want to do is on .click() is .animate #slip, essentially Im changing the css at the moment from top: 10px to top: 0px
Instead of it being quite clunky i'd like to animate the movement on thechange of CSS.
Currently use .toggleClass to achieve this:
$("#div1").click(function() {
$("#div2t").toggleClass('min');
});
hi,
I cannot click on the links (tags) on top of the page in IE7.
I tried tochange z-index of the elements but it doesn't work.
Could you tell me what's wrong with it ? http://www.sanstitre.ch/drupal/portfolio?tid[0]=38
The mouse click is handled by jQuery function .click()
I'm sure javascript works because" Hide - Alphabetical Order menus" work
thanks
Looking for a way to rename files that are uploaded by users through a filefield. For example, rename user profile photos using uniqid.
I found a good solution for D6 here:
http://www.wesjones.net/home/2011/03/drupal-6-how-to-change-filename-on-upload
but can't find anything for D7.
Another option is to use File (Field) Paths, but (1) the module causes warnings on my setup and (2) seems to be a bit of an overkill to install a general module for a very specific purpose.
I have a cookie that is formatted like partA:partB. The colon is not escaped in any fashion. I need to read this cookie in a JSP script, and request.getCookies() is only returning partA. I can't changethe cookie because it is used in multiple applications, and fixing the cookie would break production code. Any ideas how I can read the full value of this cookie?
Hi ,
I try to add new mhtml link to List but i've got :
"Illegal url address " etc.
Howtochangethe setting to allow mhtml links ?
Thanks in advance ,
Ish
Hey,
I've got a repeater which is placed inside an updatepanel. When the user enters a new value, the repeater is updated without a postback. Is it possible to get the row that was updated in JQuery so that I can place an effect on it to make thechange less subtle? For example, I'd like to fade a new color in on just the row that was changed.
Thanks
i have included the plugin and written code like
if(page) { $.post(page,{},function(data){callBackFunction(data)}); }
function callBackFunction(data)
{
$('.page_change').html(data);
$('.page_change').effect("bounce", { times:3 }, 300);
$('#submit_show').show();
}
The data change is happening but the bouce effect i am not getting..how do i solve this issue..
$('.box').click(function(){
$(this).find('p').toggle(
function () {
$(this).css({"color" : "red"});
},
function () {
$(this).css({"color" : "black"});
}
);
});
if i execute this script the 'p' color will change if i click on the 'p' not on the .box class why ? And howto i make it so that 'p' color changes when i click on the .box div
Hello,
I am trying to create one custom button which is circular and when i click that button i want that button FOCUS and COLOR change and i don't know howto do exactly so any one can help me or show me that code howto do ??? Please.......!!! :(
I'm only supporting the portrait orientation, but both the right-side-up and upside-down versions. Why do my subviews not resize appropriately? There's a status bar sized black space at the top of the view. If I change tabs and come back, it's corrected.
Hi,
Does anyone know if it is possible to encode a video using ffmpeg in reverse? (So the resulting video plays in reverse?)
I think I can by generating images for each frame (so a folder of images labelled 1.jpg, 2.jpg etc), then write a script tochangethe image names, and then re-encode the ivdeo from these files.
Does anyone know of a quicker way?
This is an FLV video.
Thank you
I'm using imagefill() for changing the background color if an image.But while doing so the other areas which are not to be affected, change its color to black.
$image = imagecreatefrompng("sample.png");
$background = imagecolorallocate($image, 255, 0,0);
imagefill($image, 0,0, $background);
header("content-type: image/png");
imagepng($image,"sample.png");
This is my code.Can anyone tell me how this is happening ?
Im trying to sort any array with array_multisort and everything is working great. However, based on conditions in my script, I need tochangethe options. So What I have so far is this:
array_multisort(
$sort1,SORT_ASC,
$sort2,SORT_ASC,
$sort3,SORT_ASC,
$arraytosort
);
and what I would like to have is something like this:
$dynamicSort = "$sort1,SORT_ASC,$sort2,SORT_ASC,$sort3,SORT_ASC,";
array_multisort(
$dynamicSort,
$arraytosort
);
Any suggestions?
I want to replace new lines in text with coma or space but do not changethe last new line.
I know of this question: Howto replace new lines with tab characters - but it does produce an tab on end instead of new line.
So far I have come with:
awk 'NR>1{printf","} {printf $1} END{printf"\n"}'
Is there an easier way to do this? This is not an assignment, I am just curious want to level up my scripting.
The default month view display of FullCalendar shows the short version of day names.
I have been trying to find out howtochangethe display to show full day names. I have read the documentation about dayNames and dayNamesShort, but I can't get it to work.
Any help in howto display the full day names will be appreciated.
Thanks.
mybox.Checked := true;
Setting Tradiobutton to checked (by code) causes OnClick event handler to be called.
How can I recognize if user is making the state change by GUI interaction
Firefox is resetting the coldfusion session every time I come back to a page instead of the session persisting. I can't figure out what I have tochange for this to stop happening.
Any ideas?