active questions tagged problem - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:20:57Zhttp://stackoverflow.com/feeds/tag/problemhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816152/jquery-plugin-get-reference-to-passed-object0jQuery: plugin - get reference to passed objectFuxi2009-11-29T17:38:35Z2009-11-29T18:15:20Z
<p>hi all,</p>
<p>i'm trying to create my first jQuery plugin.
i got a prototype function called myListview and want to apply the plugin (named initLV) to it.</p>
<p>the function:</p>
<pre><code>function myListview(div)
{
this.div = div;
$(this).initLV(); // apply the plugin
}
</code></pre>
<p>as you can see, i'm passing the whole prototype object to the plugin.
my question: how can i access the object's div from inside the plugin?
here's my plugin code - the 1st alert works, but all others dont :/</p>
<pre><code>(function ($) {
$.fn.initLV = function ()
{
alert($("tr",this.div).length); // works
alert(this.div.html()); // don't work
alert($(this.div).html()); // don't work
alert($(this).div.html()); // don't work
}
})(jQuery);
</code></pre>
<p>it just makes no sense that the 1st alert works and the others don't.
what could be wrong?</p>
<p>thx</p>
http://stackoverflow.com/questions/1814384/css-files-not-loading-after-capistrano-deploy0css files not loading after capistrano deployShiv2009-11-29T01:55:22Z2009-11-29T01:55:22Z
<p>Hey Guys,</p>
<p>I have noticed that after I do a deploy via capistrano, the static css files dont seem to be loading, this is true when I specially specify</p>
<pre><code><%= stylesheet_link_tag 'resume',:cache => true %>
</code></pre>
<p>removing the :cache => true solves the problem, but I would like to know why that option is causing a problem in the first case, and secondly what is the best practice while deploying the rails application via capistrano</p>
http://stackoverflow.com/questions/1802601/jasperreport-using-ireport-not-support-unicode-character-while-export-to-pdf-form0JasperReport using iReport not support unicode character while export to pdf format Yog2009-11-26T09:35:12Z2009-11-26T09:35:12Z
<p>Hello
I am using iRport design tool to create the report in my project. I have created .jrxml and .jasper file, it works fine in the iReport means it supports for the Unicode character and displaying all unicode characters but if I integrated this .jasper file in my java class and exports the report into the pdf format by using itext jar file. Then the program runs well and create the report in pdf format but not showing the unicode characters in the generated report file. So please help me in this case sothat I will able to view unicode characters in the generated report file. Thanks in advance. </p>
http://stackoverflow.com/questions/1789574/default-text-in-the-drop-down2Default Text in the Drop Down.Anurag2009-11-24T11:49:03Z2009-11-25T20:42:18Z
<p>I am working on a wpf application, when using Combo Box control i am assigning ItemsSource to it. So, it displays a list of items with no item selected, now user can select an item of his choice. When user has made a selection he has no option to undo that. I want him to be able to get the initial state where no item is selected. How can i do that?</p>
http://stackoverflow.com/questions/1798781/tabbarcontroller-and-table-view-reload-problem0tabbarcontroller and table view reload problemMM2009-11-25T17:56:02Z2009-11-25T17:56:02Z
<p>I've same sort of typical table reload problem.
I've a tabbar controller associated with the navigation controller.
I've separate tableview controllers for two tabs. While the first tab - table reload works fine, in the second tab, table view reference is turning out to be nil. (Memory reference is coming as 0x0). Any help in this regard will be greatly appreciated.</p>
http://stackoverflow.com/questions/1796097/asp-net-mvc-issues-meant-for-advanced-developers-only1ASP.Net MVC issues, meant for advanced developers only?Zan2009-11-25T10:44:40Z2009-11-25T11:09:25Z
<p>Just a random question. I've been in internship and then working as a software designer for almost a year now, mainly with SQL Server 2005 / 2008, and Visual Studio 2008 with ASP.Net VB / C#, web software development. We recently started a project with ASP.Net MVC, and I just don't get this stuff.</p>
<p>The concept of Views, Controllers, Models etc is clear. I'm still a bit confused with some of the syntax, but it doesn't seem impossible to get. My problem however, is with all the basic controls and functions you had with basic ASP.Net. Want a dropdownlist? Go browse through 15 tutorials one of which may actually work. How about a gridview with editable rows? Manually build the tables or helper classes with loads and loads of code also built from several different tutorials. What about panels or multiview indexes to easily control the visible user-interface on a page? Well, go learn another tutorial about how to do it all from scratch. Etc..</p>
<p>I do not argue the idea that MVC is worth it. It has to be, with so many people smarter and more experienced than I am saying so. But I've now fought with this beast for over a month and am getting increasingly frustrated at having to use hours to days of time to do the most basic tasks that were easy even when I was barely beginning with the whole programming thing almost a year ago.</p>
<p>So my question. Are there others out there like me? Are there perhaps nice blogs or articles opening all this up to people like myself? Is ASP.Net MVC just something that is so hardcore advanced that you NEED to have extensive experience and talent to actually master it?</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1794193/jquery-problem-with-odd-selector0jQuery: Problem with :odd selectorFuxi2009-11-25T01:59:16Z2009-11-25T02:10:35Z
<p>hi all,</p>
<p>i'm having a table with several rows - i assigned a hover function to each row.
what i wanna do is find out in my hover funtion if the selected TR is odd or even.</p>
<p>i used this code:</p>
<pre><code>alert(tr.is(":odd"));
</code></pre>
<p>unfortunately it doesn't work although it should(?) i'm always getting "false".</p>
<p>i tried getting the rowIndex directly from the TR element like:</p>
<pre><code>alert(tr.is(":odd")+"/"+tr.get(0).rowIndex);
</code></pre>
<p>strange thing: i'm getting the correct rowIndex, but always False from the :odd property.</p>
<p>what's wrong?</p>
http://stackoverflow.com/questions/1785899/the-rss-feed-of-wordpress-blog-goes-wild0The RSS Feed of Wordpress blog goes wildSkuta2009-11-23T20:56:39Z2009-11-23T22:19:05Z
<p>Hi,</p>
<p>I've installed the wordpress.org script however the RSS feed just sends me errors. I've tried to edit files within the wordpress like wp-rss2.php to remove "?" from the first line but it does not work and I am not sure what else could be wrong.</p>
<p>The feed is here: <a href="http://www.donaha.sk/feed" rel="nofollow">http://www.donaha.sk/feed</a></p>
<p>I haven't found anything on Mr. Google so far.</p>
<p>ANSWER: I was running in Slovak language mode. I changed back to EN_US and problem was resolved. The solution is not evident but it works for me. Thank you for help but none of the answers were correct.</p>
http://stackoverflow.com/questions/1785729/div-background-images-shows-up-but-background-color-does-not0div background images shows up, but background color does notAnthony2009-11-23T20:30:07Z2009-11-23T21:31:27Z
<p>Hello,</p>
<p>I'm having a minor css issue.</p>
<p>I have a series of layered divs and I've set div class styles and they all show up (padding, font colors,etc). However, the background-color will not work for the overlaying divs.</p>
<p>as a test, I tried to set a border and border styles, and they all worked as well, except the border color, it didn't show up and the border with the extra styling remained black.</p>
<p>Each div has a unique id, and the ones where the background-color are not working are nested (side by side) in a container div. I've been trying to understand if the nested divs are taking the parent divs background color, but I've tried to change the overflow fo the parent, and it didn't have any affect.</p>
<p>As a work around I created a 1 x 1px jpg of the correct background color and set the divs background image, which worked. But it's a hack, and I'm no better off knowing why all the style elements work, except the background-color.</p>
<p>I hope I've explained my situation sufficiently, if anyone can help me I would appreciate it.</p>
<p>(also, as an addition, I use dreamweaver to write code and the background colors show up in the preview mode, but do not show up in firefox, chrome, or IE)</p>
<p>Requested Code:</p>
<pre><code> <div id="longBox">
<div id="specialLable"> Rent Specials &amp; promotions</div><!--end specialLable-->
<div id="promoMain">
<div id="proHeader">Alhambra Village Fall Special:</div><!--end proHeader-->
<div id="proDate">Expires: Date</div><!--end proDate-->
<div id="clear"></div>
<div id="protext">This is where the details go</div><!--end protext-->
<div id="promoConditions"><br />Limited availability. All promotions subject to change. Not good with other offers or promotions unless specified.</div><!--end promoConditions-->
<div id="proContact">Request an Appointment</div><!--end proContact-->
</div><!--end specialLable-->
</div><!--end longBox-->
</code></pre>
<p><br></p>
<pre><code>#longBox{
width:713px;
height:225px;
background-color:#FFFFFF;
float:left;
margin:1.2em 0 0 .7em;
}
#specialLable{
background-image:url(../images/01titleBar.png);
margin: .5em .5em .5em .5em;
width:689px;
height:30px;
font-size:1.2em;
font-weight:bold;
text-transform:uppercase;
color:#667b90;
padding:3px 0 0 6px;
}
#promoMain{
margin: 0 .5em .5em .6em;
background-color:#ced5da;
height:166px
}
#proHeader{
font-size:11px;
text-align:left;
font-weight:bold;
text-transform:uppercase;
color:#CC6666;
float:left;
padding:.3em .6em .3em .6em;
margin:.6em 0 0 .6em;
background-image:url(/images/images/bgwhite.jpg);
background-repeat:repeat;
width:503px;
}
#proDate{
font-size:11px;
text-align:left;
font-weight:bold;
text-transform:uppercase;
background-image:url(/images/images/bgwhite.jpg);
background-repeat:repeat;
color:#CC6666;
float:right;
width:150px;
padding:.3em .6em .3em .6em;
margin:.6em .6em .6em 0;
}
#protext{
font-size:11px;
text-align:left;
margin:0 .6em 0 .6em;
height:80px;
background:ffffff;
padding:0 0 0 .6em;
background-image:url(/images/images/bgwhite.jpg);
background-repeat:repeat;
}
#promoConditions{
font-size:9px;
text-align:left;
line-height:100%;
float:left;
padding:0 .6em 0 .6em;
margin:.6em 0 0 .6em;
width:503px;
}
#proContact{
font-size:11px;
text-align:left;
font-weight:bold;
text-transform:uppercase;
background-image:url(/images/images/bgwhite.jpg);
background-repeat:repeat;
color:#CC6666;
float:right;
width:150px;
padding:.3em .6em .3em .6em;
margin:.6em .6em 0 0;
}
</code></pre>
http://stackoverflow.com/questions/1782251/-core-plot-label-not-showing0[ CORE PLOT] label not showingsizi2009-11-23T10:23:51Z2009-11-23T10:23:51Z
<p>Hi,
I download library coreplot and i try example and i try this tutorial <a href="http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application" rel="nofollow">http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application</a>.
I have two problem:
1) When I compiled example i don't have error and warning but label of example not showing.
2) inside the tutorial the command "axisSet.xAxis.axisLabelOffset = 3.0f;" give me a error " error: 'axisSet' undeclared (first use in this function)".</p>
<p>What is the problem?
is very important for me a speed reply thank you all :)
best regard</p>
http://stackoverflow.com/questions/1777530/looping-problem0Looping problemspirit.lurker2009-11-22T01:57:21Z2009-11-22T02:41:45Z
<p>Hello Everyone. I am new to C++ and I must say that I like it. I have been reading a book called 'Learn to program using C++ by John Smiley. I have a problem though. Upon reading chapter 5, I noticed that the code he proposed in the book doesn't work like it shows in the results he displays. It doesn't maintain a loop, but rather falls through to the end of the code. I will place the code here, but it is pretty huge! I hope that someome can help me solve this. I made my version, without use of while loops, and it works. I just used 'return' to maintain loops until the user decides to end program. </p>
<p>What is happening:
Upon executing the program, It asks the user if they would like to calculate a grade. If the user types "yes" in any case, all cases are turn to upper case, thus making the while statement in the code true, and false if otherwise. However, after the while(moreGradesToCalculate == "YES") returns true it falls through to the next loop, which returns false, since the buffer seems to be holding "YES", and isn't cleared for the next user input which is required for the for statements that follow, thus causing it to return a false value since "YES" isn't a number, but a character array.</p>
<p>What should have happened:
It is expected that upon entering "YES" that the buffer clears, so that the for loops can execute properly, thus maintaining the desired loop until the user asks to exit the program, ending the loop.</p>
<p>Code: </p>
<pre><code>#include <iostream>
#include <string>
int main()
{
using namespace std;
const float ENGLISH_MIDTERM_PERCENTAGE = .25;
const float ENGLISH_FINALEXAM_PERCENTAGE = .25;
const float ENGLISH_RESEARCH_PERCENTAGE = .30;
const float ENGLISH_PRESENTATION_PERCENTAGE = .20;
const float MATH_MIDTERM_PERCENTAGE = .50;
const float MATH_FINALEXAM_PERCENTAGE = .50;
const float SCIENCE_MIDTERM_PERCENTAGE = .40;
const float SCIENCE_FINALEXAM_PERCENTAGE = .40;
const float SCIENCE_RESEARCH_PERCENTAGE = .20;
int midterm = 0;
int finalExamGrade = 0;
int research = 0;
int presentation = 0;
float finalNumericGrade = 0;
char finalLetterGrade;
char response[256];
string moreGradesToCalculate;
cout << "Do you want to calculate a grade? ";
cin >> moreGradesToCalculate;
for(int i = 0; i < moreGradesToCalculate.length(); i++){
moreGradesToCalculate[i] = toupper(moreGradesToCalculate[i]);
}
while(moreGradesToCalculate == "YES"){
// What student type are we calculating?
cout << "Enter student type (1 = English, 2 = Math, 3 = Science): ";
cin.getline(response,256);
if(strlen(response) == 0){
cout << "You must select a Student Type";
return 1;
}
if((atoi(response) < 1) | (atoi(response) > 3)){
cout << response << " - is not a valid Student Type";
return 1;
}
// Student type is valid, now lets calculate the grade
switch(atoi(response))
{
// Case 1 is an English Student
case 1:
cout << "Enter the Midterm Grade: ";
cin.getline(response,256);
midterm = atoi(response);
cout << "Enter the Final Examination Grade: ";
cin.getline(response,256);
finalExamGrade = atoi(response);
cout << "Enter the Research Grade: ";
cin.getline(response,256);
research = atoi(response);
cout << "Enter the Presentation Grade: ";
cin.getline(response,256);
presentation = atoi(response);
finalNumericGrade =
(midterm * ENGLISH_MIDTERM_PERCENTAGE) +
(finalExamGrade * ENGLISH_FINALEXAM_PERCENTAGE) +
(research * ENGLISH_RESEARCH_PERCENTAGE) +
(presentation * ENGLISH_PRESENTATION_PERCENTAGE);
if(finalNumericGrade > 93)
finalLetterGrade = 'A';
else if((finalNumericGrade >= 85) && (finalNumericGrade < 93))
finalLetterGrade = 'B';
else if((finalNumericGrade >= 78) && (finalNumericGrade < 85))
finalLetterGrade = 'C';
else if((finalNumericGrade >= 70) && (finalNumericGrade < 78))
finalLetterGrade = 'D';
else if(finalNumericGrade < 70)
finalLetterGrade = 'F';
cout << endl << "*** ENGLISH STUDENT ***" << endl << endl;
cout << "Midterm Grade is: " << midterm << endl;
cout << "Final Examination Grade is: " << finalExamGrade << endl;
cout << "Research Grade is: " << research << endl;
cout << "Presentation Grade is: " << presentation << endl << endl;
cout << "Final Numeric Grade is: " << finalNumericGrade << endl;
cout << "Final Letter Grade is: " << finalLetterGrade;
break;
// Case 2 is a Math Student
case 2:
cout << "Enter the Midterm Grade: ";
cin.getline(response,256);
midterm = atoi(response);
cout << "Enter the Final Exam Grade: ";
cin.getline(response,256);
finalExamGrade = atoi(response);
finalNumericGrade =
(midterm * MATH_MIDTERM_PERCENTAGE) +
(finalExamGrade * MATH_FINALEXAM_PERCENTAGE);
if(finalNumericGrade >= 90)
finalLetterGrade = 'A';
else if((finalNumericGrade >= 83) && (finalNumericGrade < 90))
finalLetterGrade = 'B';
else if((finalNumericGrade >= 76) && (finalNumericGrade < 83))
finalLetterGrade = 'C';
else if((finalNumericGrade >= 65) && (finalNumericGrade < 76))
finalLetterGrade = 'D';
else if(finalNumericGrade < 65)
finalLetterGrade = 'F';
cout << endl << "*** MATH STUDENT ***" << endl << endl;
cout << "Midterm Grade is: " << midterm << endl;
cout << "Final Examination Grade is: " << finalExamGrade << endl;
cout << "Final Numeric Grade is: " << finalNumericGrade << endl;
cout << "Final Letter Grade is: " << finalLetterGrade;
break;
// Case 3 is a Science Student
case 3:
cout << "Enter Midterm Grade: ";
cin.getline(response,256);
midterm = atoi(response);
cout << "Enter the Final Examination Grade: ";
cin.getline(response,256);
finalExamGrade = atoi(response);
cout << "Enter the Research Grade: ";
cin.getline(response,256);
research = atoi(response);
finalNumericGrade =
(midterm * SCIENCE_MIDTERM_PERCENTAGE) +
(finalExamGrade * SCIENCE_FINALEXAM_PERCENTAGE) +
(research * SCIENCE_RESEARCH_PERCENTAGE);
if(finalNumericGrade >= 90)
finalLetterGrade = 'A';
else if((finalNumericGrade >= 80) && (finalNumericGrade < 90))
finalLetterGrade = 'B';
else if((finalNumericGrade >= 70) && (finalNumericGrade < 80))
finalLetterGrade = 'C';
else if((finalNumericGrade >= 60) && (finalNumericGrade < 70))
finalLetterGrade = 'D';
else if(finalNumericGrade < 60)
finalLetterGrade = 'F';
cout << endl << "*** SCIENCE STUDENT ***" << endl << endl;
cout << "Midterm Grade is: " << midterm << endl;
cout << "Final Exam Grade is: " << finalExamGrade << endl;
cout << "Research Grade is: " << research << endl;
cout << "Final Numeric Grade is: " << finalNumericGrade << endl;
cout << "Final Letter Grade is: " << finalLetterGrade << endl;
break;
default:
cout << response << " - is not a valid student type";
return 1;
} // end of switch
cout << endl << endl << "Do you have another grade to calculate? ";
cin >> moreGradesToCalculate;
for(int i = 0; i < moreGradesToCalculate.length(); i++){
moreGradesToCalculate[i] = toupper(moreGradesToCalculate[i]);
} // end of for
} // end of while
cout << "Thanks for using the Grades Calculation program!";
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1764209/javascript-designmode-for-iframe-doesnt-work-with-ff-when-in-jquery-dialog0Javascript: designMode for iframe doesn't work with FF when in jQuery dialogAndrey2009-11-19T15:43:20Z2009-11-19T15:43:20Z
<p>Hi, here's the sample code (fully working - just copy to an empty html file and it will work):</p>
<pre><code><html>
<head>
<title></title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/jquery-ui.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
<script type="text/javascript" language="javascript">
function Init()
{
var doc = document.getElementById("iView").contentWindow.document;
doc.designMode = "On"
doc.open()
doc.write("<html><head></head><body class='some-class'>Some test text</body></html>");
doc.close();
}
</script>
</head>
<body>
<div id="dlgDiv" style="width:202px; height:72px; border: solid 1px grey">
<iframe id="iView" style="width: 200px; height:70px" frameborder="0"></iframe>
</div>
<script type="text/javascript">
var dlg = null;
jQuery(document).ready(function() {
Init();
dlg = jQuery("#dlgDiv").dialog({
autoOpen: false,
bgiframe: true,
modal: true,
width: 400
})
dlg.dialog('open');
})
</script>
</body>
</html>
</code></pre>
<p>Now, when I run this in IE, I can edit contents of iframe; also using IE Developer Toolbar I can see that body of iframe preserves class "some-class" I specified.
But, when running this in FF, iframe is not editable, and when inspecting its DOM with firebug, i see that iframe's body is empty and has no class. So looks like for FF dialog makes a shallow copy of the div instead of using the div itself (dlgDiv) for dialog, or something like that...</p>
<p>Basically that means that NONE of javasript based rich text editors would work in a jQuery dialog in FF (and btw Google Chrome as well) - thats a big bad issue (I have tried two so far and that's how I started looking into this issue)!</p>
<p>Any ideas/comments/suggestions on how I could approach this, are highly appreciated!</p>
<p>Thank you,
Andrey</p>
http://stackoverflow.com/questions/1763739/problem-retuning-a-vector-from-a-c-dll-to-another-c-exe0Problem retuning a vector from a c++ dll to another c++ exe jeel2009-11-19T14:39:36Z2009-11-19T15:07:12Z
<p>Hi,</p>
<p>I have a function foo() in dll A.dll, whose definition is as follows </p>
<pre><code>vector<CustomObject> foo()
{
vector<CustomObject> customObjectCollection;
//code which populates customObjectCollection goes here
return customObjectCollection;
}
</code></pre>
<p>I am referring this method vector foo() of dll A from exe B</p>
<p>When i make a call to the function foo from B, I get an unhandled exception which says </p>
<blockquote>
<p>"unhandled exception at
0x10487b3f(msvcp90d.dll) in B.exe"
0xC0000005: Access violation while
writing to the location 0xfdfdfdfd".</p>
</blockquote>
<p>Note:type CustomObject does not implement copy constructor</p>
<p>When i tried to debug by attaching B.exe to A.dll, I found that inside method vector foo(), the vector gets populated without any problem but when the control returns to B.exe the valves in vector doesnot get copied !!! </p>
<p>Also, if method foo returns vector by reference , exception doesnot occur and B.exe receives an empty vetor.</p>
<p>what is the issue ?? Is it happening as I have not implemented copy constructor for CustomObject.</p>
<p>Any help is greatly appreciated
(Apologies for not articulating the question properly)</p>
<p>Thanks<br>
jeel</p>
http://stackoverflow.com/questions/1760109/css-relative-positioning-overflow-squashed-div-problem-divs-height-expand-with1CSS Relative positioning overflow (squashed div problem) divs height expand with content?judi2009-11-19T00:26:38Z2009-11-19T01:24:53Z
<p>Hi </p>
<p>I'm trying to edit some css to include a border to the right and the left of my site. My problem is that when I make my height 100% or auto nothing happens, but when I change the height it works, but I can't use this as I want it to change with the content.</p>
<p>I've noticed in expression web my sitegrinder div looks too squashed up the top instead of the full length of the content. Could this be due to positioning? Could overflow fix this somehow? </p>
<p>I have included the css and html below</p>
<pre><code> <div id="sitegrinder">
<div id="bgrepeat">
<div id="id68logo"></div>
<div id="bglight"></div>
<div id="topbanner"></div>
<div id="id53light"></div>
#sitegrinder {
left: auto;
top:auto;
width: 960px;
position: relative;
margin:auto; }
</code></pre>
<p>I've also noticed that when I include overflow:hidden within the css all my content appears squashed at the top within this div.</p>
<p>Thanks for all your help</p>
<p>Regards
Judi</p>
http://stackoverflow.com/questions/1743334/search-field-with-thickbox-problem0Search field with Thickbox problemAndy2009-11-16T16:40:16Z2009-11-17T17:29:38Z
<p>hello everyone!</p>
<p>today i'm having this problem.</p>
<p>i have a search form which is shown with Thickbox inside an iframe. the problem is.. that after i click "search" the result page is shown inside the same iframe! and i want it to be shown in the main windows.</p>
<p>so, how can i.. post the string and close the thickbox at the same time?</p>
http://stackoverflow.com/questions/1697954/content-within-floating-window-using-jquery-simplemodal-plugin-cannot-be-replaced0Content within Floating Window using jQuery SimpleModal plugin cannot be replaced after opening twice in IE8Roger2009-11-08T21:21:28Z2009-11-12T20:32:03Z
<p>Hi all</p>
<p>I am using SimpleModal plugin for showing dynamic content within a floating window. On this floating window a Javascript function call has been included (on a click event), which is changing some content on this floating window.</p>
<p>This works all very well with FF. But there is an issue with IE (I have tested with IE8 only):
Only at the very first time this modal window has been opened on corresponding page, changing any content (or any other effect like hiding DIVs etc.) from within this Javascript function using jQuery is working. On subsequent calls, if this floating window has been closed in between, IE will just do nothing!!!</p>
<p>It seems that IE does not recognize anymore that some DOM objects have been changed and that these changes should be rendered. When checking the actual content of the DOM object, you will see that the content has been changed, but it is just not rendered! :-(</p>
<p>I have already tried some hacks, like addClass('fake') / removeClass('fake') on a root element, but did not succeed.</p>
<p>Here some test code.</p>
<p>Javascript function for opening modal window:</p>
<pre><code>showTestModal('DEBUG', '<div id="DivTestRoot"><div id="DivTest">OrigValue</div><a href="javascript:changeContent(\'\',\'\');"">Click here</a></div>', 100, true, 50, 50);
</code></pre>
<p>The Javascript function changing the content (called from within floating window):</p>
<pre><code>function changeContent() {
$('#DivTest').html('ChangedValue');
$('#DivTestRoot').addClass('fake');
$('#DivTestRoot').removeClass('fake');
$('#DivTestRoot').show();
alert($('#DivTest').parent()[0].innerHTML);
</code></pre>
<p>}</p>
<p>The corresponding code for calling jQuery SimpleModal plugin:</p>
<pre><code>function showTestModal(title, data, height, showClose, top, left) {
if (title == undefined)
title = "";
if (data == undefined)
data = "";
if (height != undefined)
TestModal.height = height;
if (top == undefined)
top = 135;
if (left == undefined)
left = 20;
var closeHTML = "";
if (showClose == undefined || showClose == true)
closeHTML = "<a href='#' title='Close' class='modalCloseX'>x</a>";
var htmlModal = "<div id='DivTestModal' style='display:none'><div class='TestModal-top'></div><div class='TestModal-content'><h1 class='TestModal-title'>"
+ title + "</h1><div class='TestModal-loading' style='display:none'></div><div class='TestModal-errormessage' style='display:none'></div>"
+ "<div class='TestModal-message'>" + data + "</div></div><div class='TestModal-bottom'></div></div>";
$(htmlModal).modal({
closeHTML: closeHTML,
position: [top, left],
overlayId: 'TestModal-overlay',
containerId: 'TestModal-container',
onOpen: TestModal.open,
onShow: TestModal.show,
onClose: TestModal.close
});
</code></pre>
<p>}</p>
<p>This is more or less the code copied from <a href="http://www.ericmmartin.com/projects/simplemodal" rel="nofollow">http://www.ericmmartin.com/projects/simplemodal</a>:</p>
<pre><code>var TestModal = {
message: null,
height: 0,
open: function(dialog) {
//$(this).parent().appendTo("form");
$(dialog).parent().appendTo("form");
// add padding to the buttons in firefox/mozilla
if ($.browser.mozilla) {
$('#TestModal-container .TestModal-button').css({
'padding-bottom': '2px'
});
}
// input field font size
if ($.browser.safari) {
$('#TestModal-container .TestModal-input').css({
'font-size': '.9em'
});
}
var h = 280;
if (TestModal.height > 0)
h = TestModal.height;
var title = $('#TestModal-container .TestModal-title').html();
$('#TestModal-container .TestModal-title').html('Laden...');
dialog.overlay.fadeIn(200, function() {
dialog.container.fadeIn(200, function() {
dialog.data.fadeIn(200, function() {
$('#TestModal-container .TestModal-content').animate({
height: h
}, function() {
$('#TestModal-container .TestModal-title').html(title);
$('#TestModal-container form').fadeIn(200, function() {
$('#TestModal-container #TestModal-name').focus();
// fix png's for IE 6
if ($.browser.msie && $.browser.version < 7) {
$('#TestModal-container .TestModal-button').each(function() {
if ($(this).css('backgroundImage').match(/^url[("']+(.*\.png)[)"']+$/i)) {
var src = RegExp.$1;
$(this).css({
backgroundImage: 'none',
filter: 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + src + '", sizingMethod="crop")'
});
}
});
}
});
});
});
});
});
},
show: function(dialog) {
$('#TestModal-container .TestModal-close').click(function(e) {
e.preventDefault();
if ($('#TestModal-container .TestModal-errormessage:visible').length > 0) {
var msg = $('#TestModal-container .TestModal-errormessage div');
msg.fadeOut(200, function() {
msg.empty();
contact.showError();
msg.fadeIn(200);
});
}
else {
$('#TestModal-container .TestModal-errormessage').animate({
height: '30px'
}, contact.showError);
}
});
},
close: function(dialog) {
$('#TestModal-container .TestModal-errormessage').fadeOut();
$('#TestModal-container .TestModal-title').html('Schliessen...');
$('#TestModal-container form').fadeOut(200);
$('#TestModal-container .TestModal-content').animate({
height: 40
}, function() {
dialog.data.fadeOut(200, function() {
dialog.container.fadeOut(200, function() {
dialog.overlay.fadeOut(200, function() {
$.modal.close();
});
});
});
});
},
error: function(xhr) {
alert(xhr.statusText);
},
showError: function() {
$('#TestModal-container .TestModal-errormessage')
</code></pre>
<p>.html($('').append(contact.message))
.fadeIn(200);
}
};</p>
<p>When the floating window is opened the second time, you will see in the alert box that innerHTML has been adapted, but still the value "OrigValue" is shown. In the first attempt it is always working as it should ("ChangedValue" is shown within DIV).</p>
<p>Thank you for any hint!</p>
<p>Cheers,
Roger</p>
http://stackoverflow.com/questions/1719378/x86-assembly-keyboard-input-without-int0x86 Assembly Keyboard Input Without INTHans2009-11-12T01:52:48Z2009-11-12T01:56:49Z
<p>I need to make an animation which will accelerate when the user keeps a key pressed, and return to normal speed when the key is released. I can't "wait" for the user to enter a key like most DOS and BIOS interrupts do, since it'll stop the animation. </p>
<p>I tried to use option 01H INT 16H, which works without pausing the program, but it doesn't clear the keyboard buffer either; thus the animation will stay accelerated even if the key is released, since the key stays in the buffer.</p>
<p>I'm thinking that if I can access the keyboard buffer's memory location manually I can retrieve and erase it myself. But sadly I don't know how to do this. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1718425/back-button-loop-with-iframes0Back button loop with IFRAMESTim Jackson2009-11-11T22:12:59Z2009-11-11T22:40:40Z
<p>In my <a href="http://www.nelsoncentral.school.nz/" rel="nofollow">(school) website</a> we use Iframes to display class blogs (on blogger). This works well EXCEPT if the user then clicks on (say) a photo inside the iframe. Blogger (in this case) then displays the photo in the whole browser window and the back button loops; that is if the back button is hit, the browser (IE, FF, Chrome) stays on the same page. The only way out is for the user to jump back two pages (which many of our users don't know how to do).
I've read a lot of posts on back buttons and iframes and there doesn't appear to be a simple solution. Bear in mind that I don't have control over the iframe content (so no embedded back buttons in the frame are possible). Ideas anyone?</p>
http://stackoverflow.com/questions/1712801/c-threadsafe-singleton-not-for-init0C++ Threadsafe Singleton (NOT FOR INIT)Reggie2009-11-11T03:23:32Z2009-11-11T03:31:29Z
<p>So I want to access a singleton class from multiple threads. Conceptually I'd think that calling non-const methods on this singleton instance would be not thread-safe. I've been looking online and no one seems to address this possible issue. Is there an actual problem with this, is the only issue with Singleton's thread-safety, the initialization of the instance variable?</p>
http://stackoverflow.com/questions/1707344/admin-product-images-short-order-problem-in-magento-2Admin Product Images short order problem in magento. [closed]Mahesh Gadahvi2009-11-10T11:37:49Z2009-11-10T11:43:06Z
<p>When i browes many product and then upload them then instead of its short order they are upload in different order in magento.</p>
http://stackoverflow.com/questions/1694690/are-these-jquery-calls-the-same1Are these JQuery calls the same?Matt W2009-11-07T22:41:04Z2009-11-08T00:04:54Z
<p>Hi guys,</p>
<p>Could someone tell me if this:</p>
<pre><code> $.ajax({
url: 'test.html',
success: function(data) {
alert("Data Loaded: " + data);
}
});
</code></pre>
<p>is the same as this:</p>
<pre><code> $.ajax({
url: 'test.html',
success: function(data) {
alert("Data Loaded: " + $(data).html());
}
});
</code></pre>
<p>When retrieving this content:</p>
<pre><code><!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>
<title>blank page</title>
</head>
<body>
<div id="content">Some content.</div>
</body>
</html>
</code></pre>
<p>I ask because the second jquery ajax call does not alert. Could someone explain why the two versions of the alerts are not the same please?</p>
<p>Matt.</p>
http://stackoverflow.com/questions/1692301/mfmailcomposeviewcontroller-csv-attachment-not-being-attached-but-showing-inline0MFMailComposeViewController csv attachment not being attached, but showing inline insteadHarris2009-11-07T07:14:35Z2009-11-07T07:14:35Z
<p>Hello - I am having a problem with sending csv attachments via MFMailComposeViewController.
Sometimes they come through just fine, but for other users they don't come through as attachments, but rather as text inline in the email (with <br/> instead of line returns.) It's very strange. Anybody know what I'm doing wrong?
Here is a snippet of my code:</p>
<pre><code>MFMailComposeViewController *mailComposeViewController = [[MFMailComposeViewController alloc] init];
mailComposeViewController.mailComposeDelegate = self;
NSString *csv = @"foo,bar,blah,hello";
NSData *csvData = [csv dataUsingEncoding:NSUTF8StringEncoding];
[mailComposeViewController addAttachmentData:csvData mimeType:@"text/csv" fileName:@"testing.csv"];
[mailComposeViewController setSubject:@"testing sending csv attachment"];
[mailComposeViewController setMessageBody:@"csv file should be attached" isHTML:NO];
[self presentModalViewController:mailComposeViewController animated:YES];
</code></pre>
http://stackoverflow.com/questions/1686173/binding-data-to-the-custom-datagridview0Binding data to the custom DataGridViewJatin Chaturvedi2009-11-06T08:22:51Z2009-11-06T08:35:37Z
<p>All,</p>
<p>I have a customized DataGridView where I have implemented extra functionality and bounded datasource in the same custom DataGridView (Using C# and .NET). Now, I could able to use it properly by placing it on a panel control. I have added label as button on panel control to display data from datasource on to datagrid and create a binding source. Another Label which act as a button is used to update data from grid to databse. </p>
<p>Issue: I pressed show label to display data in a dsatagridview. Modified the grid cell value and immediately pressed update label which is on same panel control. I observed that, the cursor is still in the grid cell when I press Save button. While saving, the cell value is null even though I have entered something in the presentation layer. My expected behaviour is to get the modified value while saving.</p>
<p>Special Case: After typing something in the grid cell, if I click on somewhere else like the row below where I entered something, before I click on Save button, it is working fine. (Here, mainly I tried to remove the focus from the currently modified cell)</p>
<p>Is there any way to bind sources before I click on save button? Please suggest me.</p>
<p>Please feel free to ask me if you need any information.</p>
<p>I have also seen same kind of problem on this forum, but unfortunately the author got the answer and didnt post it back.</p>
<p>here is that URL: </p>
<p><a href="http://social.msdn.microsoft.com/Forums/en/winformsdesigner/thread/54dcc87a-adc2-4965-b306-9aa9e79c2946" rel="nofollow">http://social.msdn.microsoft.com/Forums/en/winformsdesigner/thread/54dcc87a-adc2-4965-b306-9aa9e79c2946</a> </p>
<p>Please help me.</p>
http://stackoverflow.com/questions/1677134/problem-with-output-doesnt-read-jump0Problem with output, doesn't read jump... KJP2009-11-04T22:32:03Z2009-11-04T22:50:11Z
<pre><code>.section .data
msgI:
.ascii "x = y\n"
msgI_end:
msgM:
.ascii "x > y\n"
msgM_end:
msgL:
.ascii "x < y\n"
msgL_end:
.section .text
.globl main
main:
movl $5, %eax #x = 5
movl $5, %ebx #y = 10
cmp %ebx, %eax
je IGUAL
jg MAYOR
jl MENOR
IGUAL: #Esta seccion de cogido se encarga
movl $4, %eax #de imprimir si x = y usando
movl $1, %ebx #los system calls de Linux
pushl $msgI
call printf
#movl $size, %edx
int $0x80
jmp EXIT
MAYOR: #Esta seccion de cogido se encarga
movl $4, %eax #de imprimir si x > y usando
movl $1, %ebx #los system calls de Linux
pushl $msgM
call printf
#movl $size, %edx
int $0x80
jmp EXIT
MENOR: #Esta seccion de cogido se encarga
movl $4, %eax #de imprimir si x < y usando
movl $1, %ebx #los system calls de Linux
pushl $msgL
call printf
#movl $size, %edx
int $0x80
jmp EXIT
EXIT:
movl $1, %eax #System calls para salir del programa
int $0x80
</code></pre>
http://stackoverflow.com/questions/1659754/problem-installing-java-ee-sdk-from-wizard0Problem Installing Java EE SDK From Wizard?Catfish2009-11-02T06:42:01Z2009-11-02T06:42:01Z
<p>Upon fixing my <a href="http://stackoverflow.com/questions/1653684/server-is-not-loading-compiling-the-latest-version-of-code-in-eclipse">earlier problem</a> where, I uninstalled both, JRE AND Java EE, and then successfully reinstalled JRE, the problem started with installing Java EE, when, upon clicking the Java EE Installation <code>.exe</code> file, and waiting for a few minutes, (for the extraction of files to take place) the main Java EE 5 SDK Update 7 Installation Wizard was loaded, I clicked the next button, then the license agreement appeared, where, I switched the radio button and proceeded to the next button. And its in the following step, the problem started, where I had to choose the Installation Directory, I kept the pre-existing location, and, clicked Next. Then, absolutely nothing happened, the <code>Back</code> , <code>Next</code> , <code>Cancel</code> , and <code>Help</code> buttons were unresponsive/frozen. But the file chooser still worked upon clicking the Browse button (in that same frame). </p>
<p><a href="http://www.imagechicken.com/uploads/1257095657038463200.png" rel="nofollow">Here</a> is that frame</p>
http://stackoverflow.com/questions/1657721/free-alternatives-for-windows-7-problem-reporting-tool-on-windows-xp0Free alternatives for Windows 7 Problem reporting tool on Windows XP [closed]fixed2009-11-01T17:25:57Z2009-11-01T17:25:57Z
<p>Hi all,</p>
<p>I've already asked this question in superuser.com - nobody answered it.</p>
<p>Maybe anybody knows a free alternative to the Windows 7 "Problem reporting tool" which would work on Windows XP?</p>
<p>Thank you in advance!</p>
http://stackoverflow.com/questions/1348437/java-scripts-deleted-now-what-1java scripts deleted now what [closed]remy2009-08-28T17:41:24Z2009-08-28T17:43:24Z
<p>i discoverd that my web site has all java scripts are now deleted!!!! what should i do???</p>