User Kevin Gorski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:11:03Zhttp://stackoverflow.com/feeds/user/35806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1634676/set-the-actual-value-attribute-of-an-input-with-jquery/1634792#16347920Answer by Kevin Gorski for Set the actual value attribute of an input with jQueryKevin Gorski2009-10-28T02:06:03Z2009-10-28T02:06:03Z<p>Even better than a local variable, you could use the jQuery Data methods to store the reset values along with the element to be reset.</p>
<p>When saving:</p>
<pre><code>$(this).data("ResetValue", $(this).val());
</code></pre>
<p>On reset:</p>
<pre><code>$(this).val($(this).data("ResetValue"));
</code></pre>
<p>Changing the selectors appropriately, and probably adding the undefined check as Ryan mentioned.</p>
http://stackoverflow.com/questions/565368/authorization-check-using-global-asax/565441#5654411Answer by Kevin Gorski for Authorization check using Global.asaxKevin Gorski2009-02-19T14:03:30Z2009-02-19T14:03:30Z<p>You could use the SqlMembershipProvider (or a custom provider if you're not using MSSQL) and deny unauthenticated users from the entire application except from the login page. This check will be limited to the time of logon as the authentication ticket will be stored either in session or as a cookie on the user's machine.</p>
<p>More details at <a href="http://msdn.microsoft.com/en-us/library/ms998347.aspx" rel="nofollow">How To: Use Membership in ASP.NET 2.0</a> and
<a href="http://aspnet.4guysfromrolla.com/articles/120705-1.aspx" rel="nofollow">Examining ASP.NET 2.0's Membership, Roles, and Profile</a></p>
http://stackoverflow.com/questions/383157/how-to-divide-gotten-data-from-a-datatable-and-bind-some-of-them-to-headertemplat/383476#3834760Answer by Kevin Gorski for How To Divide Gotten Data from A Datatable And Bind Some Of Them To Headertemplate of DatalistKevin Gorski2008-12-20T16:58:21Z2008-12-20T16:58:21Z<p>You can use a <a href="http://msdn.microsoft.com/en-us/library/system.data.dataview.aspx" rel="nofollow">DataView</a> to get a subset of the data in a DataTable and then bind that to the DataList for the item content, but you'll have to manually insert the data into the heading by attaching to the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datalist.itemdatabound(VS.80).aspx" rel="nofollow">ItemDataBound</a> event and looking for the ListItemType of Header.</p>
http://stackoverflow.com/questions/366647/are-design-patterns-in-javascript-helpful-and-what-exactly-are-they/366686#3666865Answer by Kevin Gorski for Are design patterns in JavaScript helpful? And what exactly are they?Kevin Gorski2008-12-14T16:21:37Z2008-12-14T16:21:37Z<p>One of the most practical and easy to use JavaScript-specific design pattern I've encountered is the <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">Module Pattern</a>, which is a modified <a href="http://en.wikipedia.org/wiki/Singleton_pattern" rel="nofollow">Singleton pattern</a> that "namespaces" related code and prevents the global scope from getting cluttered with variables and functions that might conflict with each other in a complicated page.</p>
http://stackoverflow.com/questions/365699/better-way-or-reusable-code-to-populate-an-html-element-or-create-a-select-after/365790#3657901Answer by Kevin Gorski for Better way or reusable code to populate an HTML element or create a select after a jQuery AJAX callKevin Gorski2008-12-13T21:44:13Z2008-12-13T21:44:13Z<p>For filling an element with the results of an AJAH call, check out the <a href="http://docs.jquery.com/Ajax/load#urldatacallback" rel="nofollow">load method</a>.</p>
<p>I'm not aware of an existing plugin to specifically load JSON data into a select list, but it would be straightforward enough to write one.</p>
http://stackoverflow.com/questions/365176/how-do-you-make-programming-fun-or-at-least-less-painful-frustrating/365432#3654320Answer by Kevin Gorski for How do you make programming fun (or at least less painful/frustrating)?Kevin Gorski2008-12-13T16:57:28Z2008-12-13T16:57:28Z<p>If you don't have a project of your own to work on, <a href="http://www.oss-watch.ac.uk/resources/toptipscommunities.xml" rel="nofollow">working on an open source project</a> is an option. A well run project should have a backlog of bugs and feature requests that would provide a range of simple to challenging tasks. You might also make some new contacts through the project that could include a mentor or future colleague.</p>
<p>Speaking of which, a mentor might be very valuable in your situation, since there are going to be countless questions and speed bumps during this learning process. I realize that SO is kind of a cloud of mentors, but having the same person to turn to for even a few weeks at a time would be ideal.</p>
<p>As far as making software development (or any knowledge work) more fun, I would say that you've got to combine first-hand learning with more traditional "book" learning, which should contain blogs and possibly magazines as well. This way you can both figure out your own style (and make your own mistakes) while considering new ideas from varied sources. As you learn, you gain the foresight to avoid or mitigate the frustrating parts (bugs, repetitive code, dealing with IE for web developers) and get to the rewarding parts.</p>
<p>On top of all that, if you're not interested/invested in what the project accomplishes or how it is accomplished, then it's probably going to bore or frustrate you. A little perspective on this can go a long way.</p>
http://stackoverflow.com/questions/359534/problem-deploying-dlls-to-the-gac-in-a-visual-studio-setup-project/359569#3595693Answer by Kevin Gorski for Problem deploying DLLs to the GAC in a Visual Studio Setup ProjectKevin Gorski2008-12-11T14:41:03Z2008-12-11T14:41:03Z<p>A "shared name" must be a synonym for a "<a href="http://msdn.microsoft.com/en-us/library/xc31ft41.aspx" rel="nofollow">strong name</a>," which is what I've always read/heard it called. That link shows how to sign an assembly with a strong name so that it can be added to the GAC.</p>
http://stackoverflow.com/questions/334119/curly-quotation-marks-vs-square-quotation-marks-what-gives/334169#3341693Answer by Kevin Gorski for Curly quotation marks vs Square quotation marks, what gives?Kevin Gorski2008-12-02T14:48:36Z2008-12-02T14:48:36Z<p>I think that the curly quotation marks you're referring to are actually "smart quotes," which are usually inserted by Microsoft Office products. IIRC, they have a Unicode value, but if you're dealing with ASCII only or well-formed XML they wreak havoc.</p>
http://stackoverflow.com/questions/327681/method-for-displaying-loading-message/327713#3277132Answer by Kevin Gorski for Method for displaying "loading" messageKevin Gorski2008-11-29T17:11:10Z2008-11-29T17:11:10Z<p>You can use <a href="http://docs.jquery.com/Ajax/ajaxSend" rel="nofollow">ajaxSend</a> and <a href="http://docs.jquery.com/Ajax/ajaxStop" rel="nofollow">ajaxStop</a> on the jQuery object to attach the appropriate event handlers as in <a href="http://techxplorer.com/2007/10/06/using-jquery-for-an-ajax-loading-message/" rel="nofollow">this tutorial</a>. This will bring up the progress indicator regardless of the type of request (all of the jQuery AJAX and JSON methods) and also hide the loading graphic if an error occurs.</p>
http://stackoverflow.com/questions/327682/using-fadein-and-append/327694#3276946Answer by Kevin Gorski for Using fadein and appendKevin Gorski2008-11-29T16:49:28Z2008-11-29T16:49:28Z<p>If you hide the content before you append it and chain the fadeIn method to that, you should get the effect that you're looking for.</p>
<pre><code>// Create the DOM elements
$(content)
// Sets the style of the elements to "display:none"
.hide()
// Appends the hidden elements to the "posts" element
.appendTo('#posts')
// Fades the new content into view
.fadeIn();
</code></pre>
http://stackoverflow.com/questions/326233/multiple-datakeynames-in-a-gridview/326637#3266372Answer by Kevin Gorski for Multiple DataKeyNames in a GridViewKevin Gorski2008-11-28T20:43:00Z2008-11-28T20:43:00Z<p>All of the DataKey values will always be passed to the Delete method because the fields named by <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.datakeynames.aspx" rel="nofollow">DataKeyNames</a> are intended to be the field or fields that uniquely identify that item in the GridView. They're often used for more than that to easily maintain extra fields on a per-row basis in ViewState as you are here, but doing so has the side-effect that you're seeing with the ObjectDataSource methods.</p>
<p>To answer your original question, no, you can't have Category be in DataKeyNames without having it be passed to the Delete method. You could maintain the value in ViewState by putting the value in a hidden input in your Template Column, though. It would be more work to get that value out than to ignore the parameter to the Delete method, though.</p>
http://stackoverflow.com/questions/307333/itemplate-and-datagrid-column-in-codebehind/307686#3076860Answer by Kevin Gorski for ITemplate and DataGrid Column in CodebehindKevin Gorski2008-11-21T02:58:07Z2008-11-21T02:58:07Z<p>You can attach an event handler to the DataBinding event of the controls you create in ITemplate.InstantiateIn as in <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.databinding.aspx" rel="nofollow">this MSDN Article</a>. The sender will be the control and the NamingContainer property will be the DataGridItem, which has a reference to the DataItem which you can use to get whatever data you need.</p>
http://stackoverflow.com/questions/294442/jquery-plugin-for-pre-populating-form-text-inputs/294489#2944893Answer by Kevin Gorski for jQuery plugin for pre-populating form text inputsKevin Gorski2008-11-16T22:28:13Z2008-11-16T22:28:13Z<p><a href="http://mucur.name/system/jquery_example/" rel="nofollow">jQuery Example</a> looks pretty good, even if the name isn't really specific enough.</p>
http://stackoverflow.com/questions/291152/comparevalidator-inside-an-updatepanel-vs2008/291755#2917551Answer by Kevin Gorski for CompareValidator inside an UpdatePanel - VS2008Kevin Gorski2008-11-14T23:17:36Z2008-11-14T23:17:36Z<p>You could turn off client-side validation for that Validator.</p>
<pre><code>EnableClientScript="false"
</code></pre>
<p>This would mean a round-trip to the server to report an invalid state, though, and you'd have to ensure that you are checking that the page is indeed valid before continuing.</p>
<pre><code>Page.Validate("PublishPassValidation");
if (Page.IsValid)
{
// Do Stuff
}
</code></pre>
http://stackoverflow.com/questions/290018/how-to-find-checked-radiobutton-inside-repeater-item/290295#2902951Answer by Kevin Gorski for How to find checked RadioButton inside Repeater Item?Kevin Gorski2008-11-14T14:49:45Z2008-11-14T14:49:45Z<p>I'm pretty sure that the only thing you could use LINQ to Objects for here would be to take the conditions from within the foreach loop and move them to a where clause.</p>
<pre><code>RadioButton checked =
(from item in answerVariantRepeater.Items
let radioButton = (RadioButton)item.FindControl("answerVariantRadioButton")
where radioButton.Checked
select radioButton).FirstOrDefault();
</code></pre>
http://stackoverflow.com/questions/276479/javascript-how-to-validate-dates-in-format-mm-dd-yyyy/276488#2764881Answer by Kevin Gorski for Javascript: how to validate dates in format MM-DD-YYYY?Kevin Gorski2008-11-09T21:18:57Z2008-11-09T21:18:57Z<p>You can simplify it somewhat by changing the first two lines of the function to this:</p>
<pre><code>var matches = this.match(/^([0-9]{2})\/([0-9]{2})\/([0-9]{4})$/);
</code></pre>
<p>Or, just change the parameter to the RegExp constructor to be </p>
<pre><code>^([0-9]{2})\/([0-9]{2})\/([0-9]{4})$
</code></pre>
http://stackoverflow.com/questions/276249/jquery-how-to-select-multiple-descendants/276284#2762845Answer by Kevin Gorski for jQuery - How to Select Multiple Descendants?Kevin Gorski2008-11-09T18:39:02Z2008-11-09T18:39:02Z<p>The comma in the selector string separates completely separate expressions, just like in CSS, so the selector you've given gets the select elements within the form named "cusomize" and all inputs on the form (as you've described). It sounds like you want something like this:</p>
<pre><code>$("form[name='customize'] select, form[name='customize'] input")
</code></pre>
<p>or if you're not into repitition, this:</p>
<pre><code>$("form[name='customize']").children("select, input")
</code></pre>
http://stackoverflow.com/questions/276206/how-do-i-hide-a-div-based-on-empty-input-fields-within-it/276241#2762411Answer by Kevin Gorski for How do I hide a div based on empty input fields within it?Kevin Gorski2008-11-09T18:18:41Z2008-11-09T18:18:41Z<p>This may have just been a typo, but you also don't need / shouldn't have a CSS class name of ".details" in your markup, just "details". The dot prefix is part of the CSS/jQuery selector syntax.</p>
<p>According to the <a href="http://docs.jquery.com/Selectors/empty" rel="nofollow">documentation</a>, ":empty" finds empty elements (as in containing no child elements), not form elements without values (an empty textbox). Checking for the value attribute equating to an empty string will work for single line text inputs, but you'd need a more complex query for including text areas, radio buttons, etc.</p>
http://stackoverflow.com/questions/275351/javascript-reflection/275457#2754577Answer by Kevin Gorski for Javascript ReflectionKevin Gorski2008-11-09T00:59:51Z2008-11-09T01:39:49Z<p>The technical reason why those methods are hidden is twofold. </p>
<p>First, when you execute a method on the Test object, "this" will be the untyped object returned at the end of the anonymous function that contains the public methods per the <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">Module Pattern</a>. </p>
<p>Second, the methods testOne, testTwo, and testThree aren't attached to a specific object, and exist only in the context of the anonymous function. You could attach the methods to an internal object and then expose them through a public method, but it wouldn't be quite as clean as the original pattern and it won't help if you're getting this code from a third party.</p>
<p>The result would look something like this:</p>
<pre><code>var Test = function() {
var private = {
testOne : function () {},
testTwo : function () {},
testThree : function () {}
};
function getMethods() {
for (i in this) {
alert(i); // shows getMethods, but not private methods
}
for (i in private) {
alert(i); // private methods
}
}
return { getMethods : getMethods }
}();
// will return ['testOne', 'testTwo', 'testThree', 'getMethods']
Test.getMethods();
</code></pre>
<p><strong>edit:</strong></p>
<p>Unfortunately, no. The set of local variables aren't accessible via a single, automatic keyword. </p>
<p>If you remove the "var" keyword they would be attached to the global context (usually the window object), but that's the only behavior that I know of that is similar to what you're describing. There would be a lot of other properties and methods on that object if you did that, though.</p>
http://stackoverflow.com/questions/1816194/access-iframe-elementsComment by Kevin Gorski on access iframe elementsKevin Gorski2009-11-29T18:45:35Z2009-11-29T18:45:35ZSoul_Master is asking if the page in the iFrame is a part of the same website and hosted with the same domain name (yourdomain.com) as the parent page. If it isn't, you're trying to do something that browsers will disallow for security concerns.http://stackoverflow.com/questions/432510/whats-the-best-way-to-save-a-one-to-many-relationship-in-linq2sql/432533#432533Comment by Kevin Gorski on What's the best way to save a one-to-many relationship in Linq2Sql?Kevin Gorski2009-01-11T17:18:07Z2009-01-11T17:18:07ZPOCO is Plain old C#/CLR Objectshttp://stackoverflow.com/questions/395759/ajax-jquery-beginner-question/396016#396016Comment by Kevin Gorski on Ajax jQuery , beginner questionKevin Gorski2008-12-28T14:48:57Z2008-12-28T14:48:57ZUsing $(function() { ... }) is equivalent to $(document).ready(function { ... });http://stackoverflow.com/questions/249663/hints-for-making-programming-even-more-pleasant/249691#249691Comment by Kevin Gorski on Hints for making programming even more pleasantKevin Gorski2008-12-13T16:59:14Z2008-12-13T16:59:14ZAnother term for this is YAGNI (You Ain't Gonna Need It).http://stackoverflow.com/questions/361717/select-current-element-in-jqueryComment by Kevin Gorski on Select current element in jQueryKevin Gorski2008-12-12T02:45:30Z2008-12-12T02:45:30ZSo if Link A1 is clicked, get Link B1 and vice versa?http://stackoverflow.com/questions/330571/databound-dropdownlist-in-datagrid-order-of-binding/330642#330642Comment by Kevin Gorski on DataBound DropDownList in DataGrid - order of bindingKevin Gorski2008-12-01T15:12:23Z2008-12-01T15:12:23ZBut you can use DataGridItem.FindControl to find the DDL by ID and DataGridItem.DataItem to get the "MaxOrderLevel." Then you can set the list's selected value with the same property that you've currently got in the markup.http://stackoverflow.com/questions/327681/method-for-displaying-loading-message/327713#327713Comment by Kevin Gorski on Method for displaying "loading" messageKevin Gorski2008-11-29T22:33:25Z2008-11-29T22:33:25ZI haven't tested it, but since at their core the jQuery.ajax and jQuery.getJSON are just calling jQuery.get with default values it should.http://stackoverflow.com/questions/294447/transform-table-with-jqueryComment by Kevin Gorski on Transform table with jquery. Kevin Gorski2008-11-16T22:31:33Z2008-11-16T22:31:33ZCould you provide a partial example of what the table will look like? It's not clear to me what you mean by "the value of each row."http://stackoverflow.com/questions/291922/jquery-nested-effects-loopComment by Kevin Gorski on jquery nested effects loopKevin Gorski2008-11-15T18:39:43Z2008-11-15T18:39:43ZIt's being used to delay the next action by 10 seconds rather than using setTimeout or setInterval.http://stackoverflow.com/questions/290018/how-to-find-checked-radiobutton-inside-repeater-item/290295#290295Comment by Kevin Gorski on How to find checked RadioButton inside Repeater Item?Kevin Gorski2008-11-14T16:37:13Z2008-11-14T16:37:13ZI've never seen a different way to get an instance of a control from a templated parent control.
The simplest thing would be to use a RadioButtonList, but I assume that your example was simplified for clarity and there were other controls in the template that prevented you from using that.