User tanathos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:03:55Z http://stackoverflow.com/feeds/user/51295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839363/simulating-a-click-in-jquery-javascript-on-a-link/1839609#1839609 -1 Answer by tanathos for Simulating a click in jQuery/JavaScript on a link tanathos 2009-12-03T12:31:17Z 2009-12-03T12:31:17Z <p>Just </p> <pre><code>$("#your_item").trigger("click"); </code></pre> <p>using .trigger() you can simulate many type of events, just passing it as the parameter.</p> http://stackoverflow.com/questions/1728129/horizontal-view-in-repeater/1730785#1730785 0 Answer by tanathos for horizontal view in repeater tanathos 2009-11-13T17:34:50Z 2009-11-13T17:34:50Z <p>You can build your ItemTemplate like:</p> <pre><code>&lt;ItemTemplate&gt; &lt;div class="floating"&gt; &lt;img src='&lt;%# /* Code to Eval your image src from datasource */ %&gt;' alt='' /&gt; &lt;span&gt;&lt;%# /* Code to Eval your image caption from datasource */ %&gt;&lt;/span&gt; &lt;/div&gt; &lt;/ItemTemplate&gt; </code></pre> <p>where the .floating class of the div is:</p> <pre><code>.floating { float:left; overflow:hidden; } .floating img { display: block; } </code></pre> <p>I usually put a div for clear after a sequence of floating element, to reset the state of box model.</p> <pre><code>&lt;div style="clear:both;"&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1703308/asp-net-and-jquery-questions/1704530#1704530 1 Answer by tanathos for ASP.net and Jquery questions tanathos 2009-11-09T22:55:46Z 2009-11-09T22:55:46Z <p>I used to declare a specific c# class for the json response. If you set the attribute [Serializable] above it, it will be serialized during the response to the client.</p> <p>Something like: </p> <pre><code>[Serializable] public class json_response { public bool response { get; set; } public json_response() { } public json_response(bool response) { this.response = response; } } </code></pre> <p>then, in a method you can:</p> <pre><code>[WebMethod()] public json_response method() { /* your stuff */ return new json_response(/* your result */); } </code></pre> <p>by javascript you can handle the json simply:</p> <pre><code>... success: function(msg) { /* in the msg.d.response you'll find your c# boolean variable */ }, ... </code></pre> <p>For your example, just use a string proprerty in the json_response class.</p> http://stackoverflow.com/questions/1704060/streamreader-not-reading-from-textfilewithin-the-project/1704461#1704461 1 Answer by tanathos for streamreader not reading from textfilewithin the project tanathos 2009-11-09T22:44:00Z 2009-11-09T22:44:00Z <p>Maybe you must use</p> <pre><code>StreamReader stRead = new StreamReader(Server.MapPath("~/textfile.txt")); </code></pre> <p>to resolve the physical position of your file, supposing it's placed in the root of your project.</p> http://stackoverflow.com/questions/1098788/waiting-for-images-loading-with-jquery/1104572#1104572 1 Answer by tanathos for Waiting for images loading with JQuery tanathos 2009-07-09T15:19:40Z 2009-11-08T23:04:02Z <p>With IE the event onload on images seems to be problematic. In addition of attach onload event handler, for each image you can try to check if attribute <code>complete</code> is equal to <code>true</code>. </p> <pre><code>$("div#sliderGallery &gt; ul &gt; li &gt; img").each( function() { if ($(this)[0].complete) { // track image is loaded } }); </code></pre> <p>This may works also for cached images.</p> http://stackoverflow.com/questions/1607704/understand-via-javascript-if-the-current-page-is-reached-using-browsers-histor 0 Understand (via javascript) if the current page is reached using browser's history tanathos 2009-10-22T14:38:32Z 2009-10-22T14:59:01Z <p>As the title: there is a way in wich I can know, client side, if the current page is shown by navigating the browser's history, or following a link, or by a postback?</p> http://stackoverflow.com/questions/1595932/selecting-an-item-in-an-list-box-asp-net-3-5/1596532#1596532 0 Answer by tanathos for Selecting an item in an list box (asp.net 3.5) tanathos 2009-10-20T18:39:32Z 2009-10-20T18:39:32Z <p>It's possible that you do the DataBind() of the listBox also in the postback? Maybe you need to put it (the binding) in a </p> <pre><code>if (!IsPostback) { .. } </code></pre> <p>to ensure you're not losing your client's select.</p> http://stackoverflow.com/questions/1587610/change-css-class-of-an-element-on-runtime/1587629#1587629 5 Answer by tanathos for Change CSS class of an element on runtime tanathos 2009-10-19T09:01:14Z 2009-10-19T09:07:08Z <p>Really simple, just put a serverside tag:</p> <pre><code>&lt;asp:Repeater ID="yourRepeater" runat="server"&gt; &lt;ItemTemplate&gt; .... &lt;tr class='&lt;%# Convert.ToBoolean(Eval("Locked")) ? "class1" : "class2" %&gt;'&gt; .... &lt;/tr&gt; .... &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> <p>UPDATE: Thanks Kobi, i've missed Convert.ToBoolean() :)</p> http://stackoverflow.com/questions/1570329/jquery-dialog-and-asp-net-repeater/1579057#1579057 1 Answer by tanathos for JQuery DIalog and ASP.NET Repeater tanathos 2009-10-16T16:26:53Z 2009-10-16T16:26:53Z <p>The solution is not so simple. You must have the ability to call the original callback function after pressing the Ok button of jQuery UI Dialog.</p> <p>First you need a generalized js function for showing the dialog:</p> <pre><code>function showConfirmRequest(callBackFunction, title, content) { $("#divConfirm").html(content).dialog({ autoOpen: true, modal: true, title: title, draggable: true, resizable: false, close: function(event, ui) { $(this).dialog("destroy"); }, buttons: { 'Ok': function() { callBackFunction(); }, 'Cancel': function() { $(this).dialog("destroy"); } }, overlay: { opacity: 0.45, background: "black" } }); } </code></pre> <p>I supposed the presence of a div like</p> <pre><code>&lt;div id="divConfirm"&gt;&lt;/div&gt; </code></pre> <p>On c# code-behind you have to register the previous client function, passing the original asp.net callbackFunction of your control as parameter (I generalized):</p> <pre><code>protected void AddConfirmRequest(WebControl control, string title, string message) { string postBackReference = Page.ClientScript.GetPostBackEventReference(control, String.Empty); string function = String.Format("javascript:showConfirmRequest(function() {{ {0} }}, '{1}', '{2}'); return false;", postBackReference, title, message); control.Attributes.Add("onclick", function); } </code></pre> <p>Through the method GetPostBackEventReference you have the ability to retrieve the postback function that asp.net assign to the control.</p> <p>Now, on Repeater ItemDataBound, retrieve the control that execute the delete and pass it to this function:</p> <pre><code>&lt;asp:Repeater ID="repeater" runat="server" OnItemDataBound="repeater_OnItemDataBound"&gt; ... &lt;ItemTemplate&gt; ... &lt;asp:Button ID="btnDelete" runat="server" Text="Delete" /&gt; ... &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> <p>and the code:</p> <pre><code>protected void repeater_OnItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { WebControl btnDelete = ((WebControl)e.Item.FindControl("btnDelete")); AddConfirmRequest(btnDelete, "Confirm delete", "Are you sure? Really???"); } } </code></pre> <p>I hope this helps.</p> http://stackoverflow.com/questions/1491732/resize-image-in-asp-net-with-c/1491777#1491777 0 Answer by tanathos for resize image in asp.net with c# tanathos 2009-09-29T10:36:21Z 2009-09-29T10:36:21Z <p>If you need an on-the-fly resize I suggest you to try an HttpHandler I write recently, <a href="http://www.recoding.it/?p=270" rel="nofollow">I've posted the code on my blog</a> (sorry, but is in italian).</p> <p>With some modifies you can use the code also for save the transformed image on the disk.</p> http://stackoverflow.com/questions/1381439/jquery-image-rotator-plugin/1383991#1383991 0 Answer by tanathos for jQuery image rotator plugin tanathos 2009-09-05T18:36:44Z 2009-09-05T18:36:44Z <p>Check out <a href="http://plugins.jquery.com/project/showcase" rel="nofollow">this plugin</a>. It's a little different from your example, but maybe you like it.</p> http://stackoverflow.com/questions/1298472/css-background-image-disappears-in-ie-6-7-8-after-running-jquery-cycle/1301274#1301274 4 Answer by tanathos for CSS background image disappears in IE (6, 7, 8) after running jQuery .cycle() tanathos 2009-08-19T17:02:29Z 2009-08-19T17:02:29Z <p>You have to set the property cleartypeNoBg to true, as they say on the <a href="http://malsup.com/jquery/cycle/options.html" rel="nofollow">options reference</a></p> <pre><code>$('#similar-products').cycle({ cleartypeNoBg: true, fx: 'scrollHorz', speed: 1000, timeout: 0, next: $('.next') }); </code></pre> http://stackoverflow.com/questions/1300128/reading-c-property-into-jquery-code/1301239#1301239 0 Answer by tanathos for Reading C# property into JQuery code tanathos 2009-08-19T16:54:13Z 2009-08-19T16:54:13Z <p>If you will put your value into an asp:HiddenField with id hfValueINeedToKnow, the simplest way to retrieve this value client side is</p> <pre><code>var jsvar = $("[id$=hfValueINeedToKnow]").val(); </code></pre> <p>So you can also place this code in a separate .js file.</p> http://stackoverflow.com/questions/1110006/optimal-way-to-pass-c-variables-to-js/1110091#1110091 0 Answer by tanathos for Optimal Way to Pass C# Variables to JS tanathos 2009-07-10T15:07:38Z 2009-07-10T15:07:38Z <p>Just register your js function only if your condition is true, you don't need to check a variable:</p> <p>C# code:</p> <pre><code>if (this.exemptcheck == true) { Page.ClientScript.RegisterStartupScript(Page.GetType(), "KEY", "/* code of your JS function that handle the true case */", true); } </code></pre> http://stackoverflow.com/questions/1100722/update-div-with-xml-using-jquery/1103175#1103175 0 Answer by tanathos for Update Div with XML using Jquery tanathos 2009-07-09T10:57:48Z 2009-07-09T10:57:48Z <p>If you want to display XML with tags try this:</p> <pre><code>function update_me_with_response(data){ $("#ajaxer_output").html(data.replace(/&lt;/g, '&amp;lt;')); } </code></pre> <p>to do that maybe it's better to use a code tag instead of a div</p> http://stackoverflow.com/questions/1059459/best-way-to-find-out-if-element-is-a-descendant-of-another/1064425#1064425 0 Answer by tanathos for Best way to find out if element is a descendant of another. tanathos 2009-06-30T15:41:05Z 2009-06-30T15:41:05Z <p>Supposing to rewrite your initial statement in:</p> <pre><code>$('#homo-sapiens').descendantOf('#australopithecus'); </code></pre> <p>try to plugin:</p> <pre><code>(function($) { $.fn.descendantOf = function(parentId) { return this.closest(parentId).length != 0; } })(jQuery) </code></pre> http://stackoverflow.com/questions/983671/asp-net-bind-repeater-using-jquery/989561#989561 0 Answer by tanathos for ASP.NET: Bind Repeater using JQuery? tanathos 2009-06-13T00:03:17Z 2009-06-13T00:03:17Z <p>Maybe it's an OT, but you can consider to change the way you bind even the client and the server control, using XSLT transformation instead od the classics server controls. You can find an example <a href="http://www.recoding.it/?p=99" rel="nofollow">here</a> (sorry, it's in italian...).</p> http://stackoverflow.com/questions/987630/how-do-i-get-the-markup-of-an-element-including-itself-using-jquery/989535#989535 1 Answer by tanathos for How do I get the markup of an element, including itself using jQuery? tanathos 2009-06-12T23:53:55Z 2009-06-12T23:53:55Z <p>This will work well:</p> <pre><code>jQuery.fn.outer = function() { return $($('&lt;div&gt;&lt;/div&gt;').html(this.clone())).html(); } </code></pre> http://stackoverflow.com/questions/968234/add-filter-to-fileupload-control/968624#968624 0 Answer by tanathos for Add filter to FileUpload Control. tanathos 2009-06-09T07:16:14Z 2009-06-09T07:16:14Z <p>If you mean to filter the file extensions client/side, with the standard browser's file selector, isn't possible. To do that you have to use a mixed type of upload, such as <a href="http://www.swfupload.org/" rel="nofollow">SWFUpload</a>, based on a flash uploader system (that's a really nice techinque: it allows you to post more than a file at time).</p> <p>The only thing you can do in standard mode is to filter the already posted file, and I suggest to use System.IO.Path namespace utility:</p> <pre><code>if (Path.GetExtension(upFile.FileName).ToUpper().CompareTo(".DOT") == 0) { /* do what you want with file here */ } </code></pre> http://stackoverflow.com/questions/936299/jquery-to-convert-strings-to-json-to-send-to-my-webservice/944196#944196 1 Answer by tanathos for jquery to convert strings to json to send to my webservice? tanathos 2009-06-03T11:18:50Z 2009-06-03T11:18:50Z <p>I suggest you to include in your project JSON2.js, that you can find at this <a href="http://www.json.org/js.html" rel="nofollow">link</a>, and to use the JSON.stringify() function:</p> <pre><code>... data: JSON.stringify({ yourVar: "value", var2: "value2" }), ... </code></pre> <p>if your web service return json data you can parse the result with the library:</p> <pre><code>success: function(json) { json = JSON.parse(json); var o = json.d; ... } </code></pre> <p>It can assure you that your input data will be sanitized from every illegal character.</p> http://stackoverflow.com/questions/508994/asp-net-dropdownlist-autopostback-and-google-chrome 3 Asp.Net, DropDownList, AutoPostBack and Google Chrome tanathos 2009-02-03T21:34:34Z 2009-05-19T03:55:18Z <p>I've a simple asp.net page (framework 3.5) and an UpdatePanel with a series of dropdownlist I want to populate asyncronously. All works fine in all major browsers (Opera, Safari, IE6, IE7, FF3), but not in Chrome.</p> <p>Chrome seems to ignore the SelectedIndexChanged event who had to make the asynch request.</p> <p>Anyone knows a simple workaround to this? Thanks!</p> <p>EDIT: More Informations</p> <p>As I say to Adam Lassek, the updatepanel refresh after the click to an asp:Button inside of it, but it doesn't work with the dropdown's <code>SelectedIndexChanged</code> event.</p> <p>The updatepanel is set like:</p> <pre><code>&lt;asp:UpdatePanel ID="updPanel" runat="server" UpdateMode="Always" ChildrenAsTriggers="true"&gt; </code></pre> <p>without Triggers specified, and the dropdows have sets <code>AutoPostBack="true"</code></p> <p><strong>UPDATE:</strong> (and retagging)</p> <p>After a few attempts I discover that it isn't a problem of the UpdatePanel, but it seems that the AutoPostback of dropdowns doesn't work properly, even in pages without ScriptManager and UpdatePanel... I'm sure that it is a problem concerning only this project, because if I start a new WebSite from scratch and replicate the structure of this, works fine in Chrome... I'm trying to remove step by step all the other things in the original project to find exactly what's the problem.</p> <p>If anyone has some ideas in meantime....</p> http://stackoverflow.com/questions/876884/how-can-i-elegantly-select-a-parent-including-its-set-of-direct-descendents/876953#876953 0 Answer by tanathos for How can I elegantly select a parent including its set of direct descendents? tanathos 2009-05-18T09:52:02Z 2009-05-18T09:52:02Z <p>I think:</p> <p>$("td.button").closest("table.toolbar")</p> http://stackoverflow.com/questions/438670/programming-is-more-a-science-or-an-art-expression 10 Programming is more a science or an art expression? tanathos 2009-01-13T11:18:22Z 2009-05-17T05:10:48Z <p>It is fundamentally a branch of mathematics, requires rigid discipline and a lot of knowledge to really understand what's up, as a science. And is deterministic.</p> <p>But there's more elegant and (beautiful?) way to achieve same results, that may seems a sort of art expression.</p> <p>What is in your opinion the prevalent aspect of programming? And Why?</p> <p>(...forgive my bad, bad english...)</p> http://stackoverflow.com/questions/764978/print-using-javascript/857341#857341 0 Answer by tanathos for Print using Javascript? tanathos 2009-05-13T11:07:23Z 2009-05-13T11:07:23Z <p>Check this jQuery plugin <a href="http://plugins.jquery.com/project/jqPrint" rel="nofollow">jqPrint</a>. It seems to do what you want.</p> http://stackoverflow.com/questions/830383/need-help-with-ie-6/830418#830418 0 Answer by tanathos for need help with IE 6 tanathos 2009-05-06T16:18:04Z 2009-05-06T16:18:04Z <p>Uhm... if there is a simple solution I really want to know it. :) But you can anyway use <a href="http://www.microsoft.com/expression/features/Default.aspx?key=webpreview" rel="nofollow">this</a> good Microsoft tool to cross-test your pages. It can be usefull for compare the final render of a website.</p> http://stackoverflow.com/questions/825569/correct-way-of-integrating-svn-source-control-and-visual-studio-net-2005-2008/825669#825669 0 Answer by tanathos for Correct way of integrating SVN source control and Visual Studio .NET 2005/2008? tanathos 2009-05-05T16:12:32Z 2009-05-05T16:12:32Z <p>I suggest you to use <a href="http://ankhsvn.open.collab.net/" rel="nofollow">Ankhsvn</a>. It will do all these things for you.</p> http://stackoverflow.com/questions/823718/best-reference-sites-for-html-and-javascript-programming/824086#824086 1 Answer by tanathos for Best reference sites for HTML and JavaScript programming tanathos 2009-05-05T09:33:24Z 2009-05-05T09:33:24Z <p>A really helpfull tool for Firefox (with Firebug installed) <a href="http://tools.sitepoint.com/codeburner/" rel="nofollow">http://tools.sitepoint.com/codeburner/</a></p> <p>For rapidly find documentation on sitepoint reference.</p> http://stackoverflow.com/questions/771896/render-javascript-on-partialpostback-through-ajax/771930#771930 0 Answer by tanathos for render javascript on partialpostback through ajax tanathos 2009-04-21T10:10:58Z 2009-04-21T10:10:58Z <p>You had to re-register the scripts you need:</p> <pre><code>ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "* nameScript *", "* scriptCode *", true) </code></pre> <p>just before the update of the UpdatePanel.</p> http://stackoverflow.com/questions/605971/formatting-the-date-in-javascript/643362#643362 0 Answer by tanathos for Formatting the Date in JavaScript tanathos 2009-03-13T15:51:12Z 2009-03-13T15:51:12Z <p>There's a very nice library to manage date in JS.</p> <p>Try <a href="http://www.datejs.com/" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/629158/whats-the-best-way-to-get-this-data-to-persist-within-javascript-event-handlers/629458#629458 1 Answer by tanathos for What's the best way to get this data to persist within Javascript event handlers using jQuery tanathos 2009-03-10T09:42:27Z 2009-03-10T09:42:27Z <p>If the assignment of the custom attributes is entirely client-side, you must resolve this with jQuery data, something like this:</p> <p>$("#yourLiID").data({ module:1, question:0, answer:6 });</p> <p>for the full documentation see <a href="http://docs.jquery.com/Core/data" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1737845/not-able-to-display-an-image-in-datalist-control-using-lightbox-scriptjquery Comment by tanathos on Not able to display an image in datalist control using lightbox script[jQuery] tanathos 2009-11-16T00:55:18Z 2009-11-16T00:55:18Z mmm, that's something wrong. You say lightbox[jQuery], but you have linked the prototype library, are you sure you're using the correct version of lightbox plugin? http://stackoverflow.com/questions/1627616/removing-asp-net-validators-for-controls-that-are-no-longer-on-the-page Comment by tanathos on Removing ASP.NET validators for controls that are no longer on the page. tanathos 2009-10-26T22:51:05Z 2009-10-26T22:51:05Z have you tried to set Enable=false on your validation control? http://stackoverflow.com/questions/1607704/understand-via-javascript-if-the-current-page-is-reached-using-browsers-histor/1607754#1607754 Comment by tanathos on Understand (via javascript) if the current page is reached using browser's history tanathos 2009-10-22T14:55:18Z 2009-10-22T14:55:18Z I'm in trouble with the messages registered server-side (asp.net). A user compile a form, send to the server, server do its serverthing and register back a javascript alert for the invalid things it founds. Then, if the user navigate back to history and forward again, the message appears another time. I think that if I can register a js function to check this situation I can bypass or not the alert. I don't know if your solution can works in my scenario, but I'll try :) thanks http://stackoverflow.com/questions/1595932/selecting-an-item-in-an-list-box-asp-net-3-5 Comment by tanathos on Selecting an item in an list box (asp.net 3.5) tanathos 2009-10-21T16:15:35Z 2009-10-21T16:15:35Z If my answer helps you, please, set it as accepted :) http://stackoverflow.com/questions/1587610/change-css-class-of-an-element-on-runtime/1587629#1587629 Comment by tanathos on Change CSS class of an element on runtime tanathos 2009-10-19T09:07:37Z 2009-10-19T09:07:37Z You're right, I've missed the convertion. http://stackoverflow.com/questions/1570329/jquery-dialog-and-asp-net-repeater/1579057#1579057 Comment by tanathos on JQuery DIalog and ASP.NET Repeater tanathos 2009-10-17T15:31:51Z 2009-10-17T15:31:51Z Thank you, I've tried to generalize much possible. I'm working on put the solution on a custom control, overriding the actual asp:Button http://stackoverflow.com/questions/968710/asp-net-multiview-controls-render-views-that-are-not-in-use Comment by tanathos on ASP.NET Multiview controls render views that are not in use tanathos 2009-06-09T09:34:37Z 2009-06-09T09:34:37Z Have you try to use SetActiveView method? Just: MultiView1.SetActiveView(View1); http://stackoverflow.com/questions/968710/asp-net-multiview-controls-render-views-that-are-not-in-use Comment by tanathos on ASP.NET Multiview controls render views that are not in use tanathos 2009-06-09T08:01:46Z 2009-06-09T08:01:46Z Exactly, how you have set mw to View1? http://stackoverflow.com/questions/117438/getting-started-using-linq-what-do-i-need/117513#117513 Comment by tanathos on Getting started using Linq, what do I need? tanathos 2009-04-14T22:42:26Z 2009-04-14T22:42:26Z Yes, I really love LINQPad. It's one of the must-have tool to study linq, and now works perfectly with Entity Framework! http://stackoverflow.com/questions/566271/cant-set-css-using-variable-jquery Comment by tanathos on Can't set CSS using variable - jquery tanathos 2009-02-19T17:21:35Z 2009-02-19T17:21:35Z Can you show us how it's done get_elem_hierarchy() function? http://stackoverflow.com/questions/508994/asp-net-dropdownlist-autopostback-and-google-chrome/509553#509553 Comment by tanathos on Asp.Net, DropDownList, AutoPostBack and Google Chrome tanathos 2009-02-04T14:55:52Z 2009-02-04T14:55:52Z I'll try as you say, thanks : ) http://stackoverflow.com/questions/508994/asp-net-dropdownlist-autopostback-and-google-chrome/509553#509553 Comment by tanathos on Asp.Net, DropDownList, AutoPostBack and Google Chrome tanathos 2009-02-04T10:07:27Z 2009-02-04T10:07:27Z I've tried your suggestion (and thank you for your answer), but it seems to not change nothing..I see that if I insert an asp:Button inside the updatepanel (that has ChildrenAsTrigger set to true),it works fine..but it doesn't work with SelectedIndexChanged of the DropDowns (only Chrome of course).. http://stackoverflow.com/questions/477754/how-to-do-this-in-jquery/477789#477789 Comment by tanathos on How to do this in jQuery tanathos 2009-01-26T15:26:40Z 2009-01-26T15:26:40Z Thank you, Craig :) Yes, it was different, i'll update my answer http://stackoverflow.com/questions/453209/how-do-i-get-the-total-json-record-count-using-jquery Comment by tanathos on How do I get the total Json record count using JQuery? tanathos 2009-01-17T12:34:30Z 2009-01-17T12:34:30Z But the $.each in success handler shows the correct records? http://stackoverflow.com/questions/438670/programming-is-more-a-science-or-an-art-expression Comment by tanathos on Programming is more a science or an art expression? tanathos 2009-01-13T11:45:09Z 2009-01-13T11:45:09Z Oh! you're right Daniel, sorry Gortok, it's my first question, and I don't understanded your request... now is wiki