 |
|
 |
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers, Chris Maunder
The Code Project Co-founder Microsoft C++ MVP
|
| Sign In·View Thread·PermaLink | 4.67/5 (5 votes) |
|
|
|
 |
|
 |
I am inserting a custom SOAPheader to a web service call in a client application using the example described here by Jim Roth: SOAP Header Extensions How-To[^] It works to the point where I can see the correct results come back all the way through the AfterDeserialize event. The problem is that the result gets set to null at the place where the call was made. For example:
var lvReceiptURL = new ReceiptURL(); lvReceiptURL = lveRETRService.getReceiptURLByReceipt(lvReceiptURLRequest);
lvReceiptURL gets set to Null even though I can clearly see in the SOAPExtension ProcessMessage that it did indeed return.
Thanks in advance for any help.
John
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I m desinging webbot which Logins on faceBook site select Friends List and Have to delete contacts I m having problem while delete List cause DeleteList is not a button in webpage and i dont know how to access and capture its even using webbrowser control plz help
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi friends,
I am really stuck while embedding windows media player to my web page? actually this is creating a lot of problem for me it is hiding my drop down menu. I am not able to get rid of this i have tried using windowlessvideo but it is not working in firefox. Any help will be appreciated Please help if any one can help, as, it is very critical. please provide link for some dynamic drop down which don't hide behind media player. it works fine for flash but not for media player in firefox. Thanks in advance.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
We've gone through the pain of integrating and heavily modifying CKEditor to replace our aging HTMLArea editor and in the end it's awful. The cursor disappears, the icons look fuzzy and horrible, the resizable window is incredibly flaky and it's a backwards step.
Can anyone recommend a browser-based WYSIWYG editor that works in all major browsers, and is flexible enough so it can be easily customised?
cheers, Chris Maunder
The Code Project Co-founder Microsoft C++ MVP
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
TinyMCE is the defacto-standard that most PHP applications default with. It has it's flaws as well, but it's better than FCKEditor, IMHO.
Second to that you might consider XStandard Lite (http://www.xstandard.com/[^])
It's an ActiveX/Java component though so I believe your users need to install something.
Second to that, many CMS type software are slowly offering/switching to Markdown as an alternative syntax to HTML, might want to check it out here:
http://en.wikipedia.org/wiki/Markdown[^]
There was a few editors a while back, but only one turns up right now and it's quite buggy in IE7...still the markup is so trivial anyone can write in it within minutes and it's converted to HTML on the fly, so you don't have to worry about XSS exploits sneaking in.
p.s-All web based WYSIWYG editors are crazy buggy, they all hack the hell out of the IWebBrowser2 component and each browser needs work arounds. Have you tried running in FireFox? Typically that browser fares best when it comes to working in WYSIWYG editors.
Cheers, Alex
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Chris Maunder wrote: Can anyone recommend a browser-based WYSIWYG
Chris, i also tried the CKEditor, but i was not convinced. So, i opted for FCK Editor. Its better than CK and supports all major browsers..
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
hi guys, pls im a new member of this site, i need code or source amterials in devloping a web based recruitment system. the code shuld be written in php pr asp.net thank u guys.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
i'm sorry to say that this is not the way this forum is working. All you can get here is help to a specific problem like: "What is wrong with this code" or "How can I enable Auto-refresh".
Regards Sebastian
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Hi Guys,
I'm not sure what I did, but I cannot figure out how to fix it. For some reason, my comparison operator isn't doing what it should be doing.
var Current = parseInt(document.getElementById("hiddenvalue").value); var stopValue = Current + 5; for (Current; Current < stopValue; Current++) {
I have 5 elements in an array, so I have it setup to perform a function until it detects that the current value is no longer less than the stop value. What's really weird is, that it seems to be acting more like <= than just <. It still runs when current = 5. I don't think it's a problem with variable types because I can replace stopValue with 5 or even 4 but it will still run when the current value is equal to the stop value. when Current is equal to 5, shouldn't that stop because current < stopValue is no longer true?
Another problem I am having is with changing the class after an image load:
var imageLoader = new Image(); images[image_counter].className = "image_loading"; images[image_counter].src = "/designElements/interfaceImages/loading26.gif"; imageLoader.onload = function() { images[image_counter].className = "images"; images[image_counter].src = "/Gallery/Images/thumbs/" + imageObjects[Current].url; } imageLoader.src = "/Gallery/Images/thumbs/" + imageObjects[Current].url;
does anyone see anything obvious that I'm missing?
Thanks!
the class does change initally to the image_loading class, but never seems to change back after the onload completes.
Knowledge is not power, however, the acquisition and appropriate application of knowledge can make you a very powerful individual.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
compninja25 wrote: for (Current; Current < stopValue; Current++) {
Do you need to initialise "Current"?
for (Current=0;Current < stopValue; Current++) {
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi Marc,
Thank's for the reply! I don't believe so. I wasn't thinking at the time but a few lines up in the code that I didn't copy I am initalizing 'Current' and setting it equal to whatever I have saved in my hidden variable. I have since changed it to a 'while' block instead:
while (Current < stopValue) {
It's just so weird though... I put an 'alert' line displaying both values in right after the while block and sure enough, I can watch it as it counts: (Current = 3; stopValue = 5, Current = 4; stopValue = 5, Current = 5; stopValue = 5) but rather than stopping like I thought it should, it continues through the while statement and causes the problem. (because I have a set amount of elements and when it tries to find that 5th element it comes back null. I understand the easiest fix I'm sure is to just subtract 1 from the stop value, but I would still like to discover why the function is seeing 5 < 5 as true?
Knowledge is not power, however, the acquisition and appropriate application of knowledge can make you a very powerful individual.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Yea, that still does the same thing :/ it's just weird!
Knowledge is not power, however, the acquisition and appropriate application of knowledge can make you a very powerful individual.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
|
 |
|
 |
Hiiii
How to use Calendar API data from Blackberry,LotusNotes,iCal,YahooCalendar ,MSn ,Outlook etc to third party website?
I have some idea about how to implement (Synchronize) Google Calendar in my Personal Calendar. What about the others??
With Regards
Pradeep
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hello All..
I have designed a web page containing a Templated GridView, In which, I am adding Rows from JavaScript Using AppendChild Method.
Now When The page goes to the server side, It cant find new rows which are added from the ClientSide.
How to Solve this?
Please Help.
Thanks & Regards, Bhavin.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
First, understand the tools you are working with. The ASP.NET GridView is a databound server control, when the page is posted back the grid is loaded from viewstate and rebound, if called. Since the rows added on the clientside are not part of the viewstate, they will not be added to the gridview on the serverside.
I know the language. I've read a book. - _Madmatt
|
| Sign In·View Thread·PermaLink | 5.00/5 (2 votes) |
|
|
|
 |
|
 |
hi , i have made a div that is hidden unless you click an image, and the div contains like a larger image which you click .... The problem i have is the positioning. The image is in a IFRAME with the images , so when i position it the DIV is positioned in the IFRAME, i don't want that , i want it outside the IFRAME ... how do i do it ? thanks
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
kinda , as all the content is displayed in the i frame when you select like a game from a menu , and this kind of saves time i think as u don't have to do the whole page again
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |