User rball - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:59:38Zhttp://stackoverflow.com/feeds/user/50711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data2How can I store and query schedule data?rball2009-11-26T16:24:37Z2009-11-26T19:02:56Z
<p>I'd like to allow my users to setup a schedule for their events. It could be a single day, or for convenience I'd like to allow them to specify a reoccurring event (similar to an Outlook appointment).</p>
<p>For the single event it seems pretty easy (pseudo-code):</p>
<p>Just have a DateOfEvent column that has the date on it.</p>
<p>To grab future events:</p>
<p>Select * from events where DateOfEvent > {DateTime.Now}</p>
<p>But how could I store and query a reoccurring event? I don't need to do times, as I'd just store that seperately, and if they needed a different time I'd just have them create another event. So no: Every wednesday at 5 and thursdays at 3.</p>
<p>Examples:</p>
<p>Every mon, tues, wed, thu, fri, every week</p>
<p>Every wed every week</p>
<p>Every second tuesday of the month</p>
http://stackoverflow.com/questions/1768046/in-asp-net-mvc-with-spark-view-engine-on-form-submisison-error-why-am-i-getting-a0In ASP.NET MVC with Spark View Engine on form submisison error why am I getting a 404 resource not found?rball2009-11-20T02:58:26Z2009-11-21T03:26:14Z
<p>My view:</p>
<p>/User/EditUserName/2/me</p>
<pre><code><viewdata model="EditUserNameViewData" />
<form action="~/User/EditUserName" method="post" class="span-15 last">
!{Html.TextBox("newUserName")}
<Submit id='"chooseNewName"' value='"Choose new name"' />
</form>
</code></pre>
<p>Controller actions:</p>
<p>[AcceptVerbs(HttpVerbs.Get)]
public ActionResult EditUserName(int id)
{
EditUserNameViewData vd = new EditUserNameViewData();
vd.ExistingName = _userRepository.Get(id).UserName;
return View("EditUserName", vd);
}</p>
<p>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult EditUserName(string newUserName)
{
try
{
// fails
}
catch(RulesException errors)
{
errors.AddModelStateErrors(ModelState, string.Empty);
return View();
}
}</p>
<p>the return View() does not seem to work as it redirects to </p>
<p>/User/EditUserName</p>
<p>and gives me a 404 error. WTF? I'm using xVal for validation and everything on that end works just can't get it to redisplay the prior page with the information the user put in displayed in the box. Anyone know what I'm doing wrong? This is driving me insane!</p>
<p><strong>Edit</strong></p>
<p>I'm not sure if this is a bug in Spark or what the heck is going on. As soon as I add a EditUserName.aspx page I'm not getting a 404 error anymore and it's working properly, by reshowing the page no problem??? How the heck are other people not running into this issue? I've read everything I could find and I don't see anything wrong with what I'm doing. Why would it work with the regular view engine? I so don't want to switch back to using the other one just for user input but I feel like I have no other choice here.</p>
<p>View:</p>
<pre><code><%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<form action="/User/EditUserName/<%= ((EditUserNameViewData)ViewData.Model).User.Id %>/<%= ((EditUserNameViewData)ViewData.Model).User.UserName %>" method="post" class="span-15 last">
<input type="text" id="newUserName" name="newUserName" />
<input type="submit" id="chooseNewName" value="Choose new Name" />
</form>
</code></pre>
http://stackoverflow.com/questions/1768046/in-asp-net-mvc-with-spark-view-engine-on-form-submisison-error-why-am-i-getting-a/1774398#17743980Answer by rball for In ASP.NET MVC with Spark View Engine on form submisison error why am I getting a 404 resource not found?rball2009-11-21T03:26:14Z2009-11-21T03:26:14Z<p>I was calling Html.RenderAction within my master page. I was "post"ing my form, but my action method had a [AcceptVerbs(HttpVerbs.Get)] attribute on it - this was forcing a 404 error not found and it was obviously my fault. Super glad I figured it out, but geez what a pain.</p>
http://stackoverflow.com/questions/1752718/how-do-i-select-more-than-one-element-using-the-jquery-attribute-selector0How do I select more than one element using the jQuery attribute selectorrball2009-11-17T23:55:33Z2009-11-18T00:24:13Z
<p>I have two elements that I would like to select</p>
<pre><code><input id="iMe" /> and <span id="sMe">Blah</span>
</code></pre>
<p>I would like to select them both:</p>
<pre><code>$("span[id$='Me']") and $("input[id$='Me']")
</code></pre>
<p>in one selector. I've tried:</p>
<pre><code>$("span,input[id$='Me']") -> Nope
$("span[id$='Me'],input[id$='Me']") -> Nope
$("span[id$='Me']input[id$='Me']") -> Nope
</code></pre>
<p>I wouldn't mind just adding it to the collection either. I definitely don't want to create more script to hack around this. Any ideas?</p>
http://stackoverflow.com/questions/1689306/possible-to-select-innertext-of-content-that-is-loaded-through-a-async-ajax-c0Possible to select (inner)text of content that is loaded through a async (ajax) call?rball2009-11-06T18:05:28Z2009-11-06T18:59:33Z
<p>I have a simple tree view that is loading child nodes through a ajah call to the server. I'm going to abbreviate the html but you should get the gist.</p>
<pre><code> <li id=1>Node 1</li>
</code></pre>
<p>When this is expanded (by being clicked on) there will be a bunch of sub nodes loaded <strong>through a ajah call (they are not on the page to begin with)</strong>:</p>
<pre><code><ul>
<li id=1_1>Node 1_1</li>
<li id=1_2>Node 1_2</li>
<li id=1_3>Node 1_3</li>
</ul>
</code></pre>
<p>and then again for Node 1_1</p>
<pre><code><ul>
<li id=1_1_1>Node 1_1_1</li>
<li id=1_1_2>Node 1_1_2</li>
<li id=1_1_3>Node 1_1_3</li>
</ul>
</code></pre>
<p>Now that we got all that on the screen I want to have something like so (this is simplified to try and remain clear). I am using jQuery:</p>
<pre><code>$('li').live('click', function() {
var path = $('li').attr('id');
var parent = '#1_1'; // this would be calculated, assuming 1_1_ node was clicked
var grandParent = '#1'; // against calculated
var crap = $(parent).text(); // should be 'Node 1_1'
var darn = $(grandParent).text(); // should be 'Node 1'
});
</code></pre>
<p>Both crap and darn are not getting any values. I think this is because they aren't on the page and need a something like a "live" selector, similar to jquery's "live" events.</p>
<p>I think this answer on this question might be what I want, but not sure if it is the most efficient...so I posted a new question. I will try doing this and see what I come up with and post results.
<a href="http://stackoverflow.com/questions/1081791/jquery-ajax-get-elements-inner-text">http://stackoverflow.com/questions/1081791/jquery-ajax-get-elements-inner-text</a></p>
<p>The issue though is I will have potentially 10,000 nodes visible on the screen at once so reloading and then filtering just seems slower than a direct getById type of selection.</p>
http://stackoverflow.com/questions/1611161/how-do-i-align-text-images-on-bottom-right-center-middle-of-a-container-using-the1How do I align text/images on bottom/right/center/middle of a container using the blueprint css framework?rball2009-10-23T02:46:59Z2009-10-23T20:21:15Z
<p>Is there some easy way to align stuff in div containers to the right or bottom:</p>
<pre><code><div class="span-24 align-right last">Text appears on the right side of the layout</div>
</code></pre>
<p>or:</p>
<pre><code><div class="span-2" id="lots-of-content"></div><div class="span-22 last bottom">Appears at bottom of container</div>
</code></pre>
<p>or:</p>
<pre><code><div class="span-24 vertical-middle last">Middle of the container</div>
</code></pre>
<p>Here's a sample of what I'm working with trying to position the "topnav" below:</p>
<pre><code> <div class="container">
<div class="span-16">
<h1>Header</h1>
</div>
<div class="span-8 last vertical-middle">
<div id="topnav" class="align-right"><input type="button" id="register" class="ui-button ui-state-default ui-corner-all" value="Register" /> or <button type="button" id="signin" class="ui-button ui-state-default ui-corner-all">Sign in</button></div>
</div>
<hr />
...
</div>
</code></pre>
http://stackoverflow.com/questions/1495145/how-do-i-change-the-value-of-a-extended-buttonfield0How do I change the value of a extended ButtonField?rball2009-09-29T21:51:43Z2009-10-20T16:17:27Z
<p>I want to change the value of the text in a ButtonField depending on other factors. Some code:</p>
<pre><code> public override void InitializeCell(DataControlFieldCell cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex)
{
base.InitializeCell(cell, cellType, rowState, rowIndex);
bool isDataRowAndIsHighlightFieldSpecified = cellType == DataControlCellType.DataCell && !string.IsNullOrEmpty(UnnpiFlagField);
if (isDataRowAndIsHighlightFieldSpecified)
{
cell.DataBinding += new EventHandler(cell_DataBinding);
}
}
private void cell_DataBinding(object sender, EventArgs e)
{
TableCell cell = (TableCell)sender;
object dataItem = DataBinder.GetDataItem(cell.NamingContainer);
IButtonControl button = cell.Controls[0] as IButtonControl;
button.Text = DataBinder.GetPropertyValue(dataItem, DataTextField).ToString();
bool highlightTheText = DataBinder.GetPropertyValue(dataItem, IsFlagField).ToString().ToUpper() == "Y";
if (highlightTheText)
{
cell.CssClass = string.Concat(ItemStyle.CssClass, " thisChangesFine");
button.Text = "CHANGE ME";
}
}
</code></pre>
<p>This code works great for BoundField, in which the cell's Text is changed and highlighted but even though the button control does indeed have a button with the correct CommandName set through the aspx page, the Text value initially contains nothing and seems to be set somewhere else. When I set it here to another value it seems to be resetting to the original value someplace else. Looking into Reflector I don't see where this could be happening. Reflector shows:</p>
<pre><code>protected override DataControlField CreateField()
public override bool Initialize(bool sortingEnabled, Control control)
private void OnDataBindField(object sender, EventArgs e) [Can't get that one :(]
protected override void CopyProperties(DataControlField newField)
protected virtual string FormatDataTextValue(object dataTextValue)
public override void ValidateSupportsCallback()
</code></pre>
<p>I've checked each one and I don't see the value getting set. That does seem to be happening in the OnDataBindField(object, EventArgs) here:</p>
<pre><code>if ((this.textFieldDesc == null) && (component != null))
{
...
this.textFieldDesc = TypeDescriptor.GetProperties(component).Find(dataTextField, true);
...
}
if ((this.textFieldDesc != null) && (component != null))
{
object dataTextValue = this.textFieldDesc.GetValue(component);
str = this.FormatDataTextValue(dataTextValue);
}
...
((IButtonControl) control).Text = str;
</code></pre>
<p>Which I would think would be happening BEFORE I'm trying to change the value, but as I've said before it seems that button.Text is string.Empty in the cell_DataBinding method.</p>
<p>Anyone have any ideas?</p>
http://stackoverflow.com/questions/1495145/how-do-i-change-the-value-of-a-extended-buttonfield/1595794#15957940Answer by rball for How do I change the value of a extended ButtonField?rball2009-10-20T16:17:27Z2009-10-20T16:17:27Z<p>I go through in the databound event and create a list of strings to emit when the PreRender is called:</p>
<pre><code> public override void InitializeCell(DataControlFieldCell cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex)
{
base.InitializeCell(cell, cellType, rowState, rowIndex);
bool isDataRowAndIsHighlightFieldSpecified = cellType == DataControlCellType.DataCell && !string.IsNullOrEmpty(SpecialField);
if (isDataRowAndIsHighlightFieldSpecified)
{
cell.DataBinding += new EventHandler(cell_DataBinding);
cell.PreRender += new EventHandler(cell_PreRender);
}
}
</code></pre>
<p>and </p>
<pre><code> IList<string> buttonsText = new List<string>();
private void cell_DataBinding(object sender, EventArgs e)
{
TableCell cell = (TableCell)sender;
object dataItem = DataBinder.GetDataItem(cell.NamingContainer);
bool specialData = DataBinder.GetPropertyValue(dataItem, SpecialField);
if (specialData)
{
cell.CssClass = string.Concat(ItemStyle.CssClass, " special");
buttonsText.Add("Replace text");
}
else
{
buttonsText.Add(DataBinder.GetPropertyValue(dataItem, DataTextField).ToString());
}
}
</code></pre>
<p>and finally in the pre render:</p>
<pre><code> void cell_PreRender(object sender, EventArgs e)
{
TableCell cell = (TableCell)sender;
IButtonControl button = cell.Controls[0] as IButtonControl;
int index = ((GridViewRow)cell.NamingContainer).RowIndex;
button.Text = buttonsText[index];
}
</code></pre>
<p>The only downfall of this approach is that you have to call databind. I am though so it wasn't an issue for me and worked peachy.</p>
http://stackoverflow.com/questions/1590280/how-can-i-keep-a-jquery-dialog-on-the-screen1How can I keep a jQuery dialog on the screen?rball2009-10-19T18:22:26Z2009-10-19T18:43:51Z
<p>I don't want to have the dialog centered on the screen so I'm setting the top and left coordinates of the box. I'm positioning it so that it appears next to a link and won't initially be open until a click.</p>
<pre><code>$("#error").dialog({
bgiframe: true,
autoOpen: false,
width: 'auto',
height: 'auto',
hide: 'slide',
show: 'clip'
});
</code></pre>
<p>and </p>
<pre><code><div id="error" title="Error">
<div id="errorText">&nbsp;</div>
</div>
</code></pre>
<p>From here I want to display an error message on the screen. For instance if I'm at the bottom of the page, I don't want the user to have to scroll down to see the dialog. Same thing if the error message is all the way on the right, I'd want to display it on the left side of the clicked element. The only problem with this since I have auto width and height it doesn't seem to know the height/width of the div before I show the dialog; with either $('#error').height() or $('#error').width().</p>
<pre><code>$("#errorText").html(request.responseText + '<p>(Esc or click to close)</p>');
var x = el.position().left + el.outerWidth();
var y = el.position().top - $(document).scrollTop();
var position = el.position();
var bottomOfDialog = position.top + heightOfTheDialog;
if(bottomOfDialog > document.height)
{
y -= heightOfTheDialog;
}
var rightSideOfDialog = position.left + widthOfTheDialog;
if(rightSideOfDialog > document.width)
{
x -= (widthOfTheDialog + el.outerWidth());
}
$("#error").dialog('option', 'position', [x, y]).dialog('open');
</code></pre>
<p>How do I get a proper heightOfTheDialog and widthOfTheDialog before the actual dialog is opened? Or should I be using something else?</p>
http://stackoverflow.com/questions/1510163/mootools-vs-jquery/1510180#151018015Answer by rball for MooTools vs JQueryrball2009-10-02T15:16:10Z2009-10-02T15:16:10Z<p>Opinion: Learn MooTools and then move on with it. Sounds like a great opportunity to learn something new. Why introduce an entirely new library with addition js bloat if you don't need to. If it'll solve the problem you're golden.</p>
http://stackoverflow.com/questions/1240845/how-can-i-sort-data-using-an-order-by-sql-clause-with-specified-data-at-the-beg1How can I sort data using an 'order by' sql clause with specified data at the beginningrball2009-08-06T19:23:54Z2009-09-30T18:28:25Z
<p>I currently have a table(/grid) of data that I can page, filter and sort. On the table I also have a built in checkbox column. Paging, filtering and sorting right now happen within the SQL query. What I want to be able to do is sort by the clicked items in my checkbox column. This would bring all items that are checked to the front of the table. Since the checkboxes themselves are all client side I can't just tell the SQL query to sort by a column that doesn't exist (maybe I need to dynamically create one?)</p>
<p>In essence what I think would happen is that the checked boxes ID value would be sent into the query the the SQL query itself would somehow know to sort by that first and then by the others specified.</p>
<p>Something like, where 1, 2, and 3 are clicked:</p>
<p>SELECT * FROM Blah
ORDER BY (SELECT ID FROM Blah WHERE ID IN (1,2,3)), AnotherColumnToSort</p>
<p>That's the plan anyway, anyone have any ideas on how to actually accomplish that?</p>
<p>Update: <em>Smack</em> I'm on an Oracle DB and not SQL Server like I had thought.</p>
http://stackoverflow.com/questions/1477879/should-i-move-client-configuration-data-to-the-server/1477892#14778920Answer by rball for Should I move client configuration data to the server?rball2009-09-25T15:12:15Z2009-09-25T15:12:15Z<p>Only thing that comes to mind is security of the information. In either case you probably have that issue though. Probably be easier to interface with though with a database as everything would be in one spot.</p>
http://stackoverflow.com/questions/1461416/why-cant-i-make-a-binding-inside-asptextboxs-text-property/1461437#14614371Answer by rball for Why can't I make a binding inside asp:Textbox's Text property?rball2009-09-22T17:26:10Z2009-09-22T17:26:10Z<p>Try:</p>
<pre><code><asp:TextBox ID="txtValue" CssClass="required number" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Value") %>'></asp:TextBox>
</code></pre>
http://stackoverflow.com/questions/426319/should-you-charge-a-customer-for-bug-fixes14Should you charge a customer for bug fixes?rball2009-01-08T22:38:52Z2009-09-22T17:05:03Z
<p>I always have, either by factoring it into the cost initially or just charging by the hour. Upon talking with another developer, who is older and been around the industry longer than I have been, he said that wasn't honest. Usually with products I like to give a guarantee for a few weeks, but ongoing bug support for life seems a bit crazy to me. I know beforehand that there's going to be a bug, and if I am going to fix it, I'd think I should be paid for the time spent. Yes or no?</p>
<p>Edit: How about before the product is deployed. You see a bug or a feature that isn't working, do you charge for that time to fix it, or is that also free because it should have worked in the first place?</p>
http://stackoverflow.com/questions/1424166/how-can-i-change-the-field-type-on-a-gridview-at-runtime-with-autogeneratetrue1How can I change the field type on a GridView at runtime with AutoGenerate="True"?rball2009-09-14T22:10:26Z2009-09-21T18:06:56Z
<p>I've created a control that extends the BoundField control to do some special processing on the data that's passed into it. </p>
<p>I now have a grid that has AutoGenerateColumns="true", by which I'd like to intercept the HeaderText, see if it's a particular value and then swap in the "SpecialBoundField" instead. I've tried using the OnDataBinding event to loop through the columns, but at this point there are no columns in the grid. I think that RowDataBound and DataBound are too late in the game so not sure what to do.</p>
<p>My next thought was to override the grid control itself to add in a "AutoGeneratingColumn" event in</p>
<pre><code>protected virtual AutoGeneratedField CreateAutoGeneratedColumn(AutoGeneratedFieldProperties fieldProperties)
</code></pre>
<p>Can anyone help or point me in a better direction? Thanks!</p>
http://stackoverflow.com/questions/1424166/how-can-i-change-the-field-type-on-a-gridview-at-runtime-with-autogeneratetrue/1455927#14559270Answer by rball for How can I change the field type on a GridView at runtime with AutoGenerate="True"?rball2009-09-21T18:06:56Z2009-09-21T18:06:56Z<p>What I ended up with:</p>
<pre><code>public class SpecialGridView : GridView
{
protected override void OnRowDataBound(GridViewRowEventArgs e)
{
ModifyData(e);
base.OnRowDataBound(e);
}
IList<string> _columnNames = new List<string>();
protected void ModifyData(GridViewRowEventArgs e)
{
LoadColumnNames(e);
if (e.Row.RowType == DataControlRowType.DataRow)
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
string currentColumnName = _columnNames[i];
if (IsSpecialColumn(currentColumnName))
{
string text = e.Row.Cells[0].Text;
bool isSpecialData = text.ToUpper() == "Y";
if (isSpecialData)
{
e.Row.Cells[i].CssClass += " specialData";
}
}
}
}
}
private void LoadColumnNames(GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
foreach (TableCell cell in e.Row.Cells)
{
_columnNames.Add(cell.Text);
}
}
}
private bool IsSpecialColumn(string currentColumnName)
{
foreach (string columnName in SpecialColumnNames)
{
if (currentColumnName.ToUpper() == columnName.ToUpper())
{
return true;
}
}
return false;
}
private IList<string> _specialColumnNames = new List<string>();
public IList<string> SpecialColumnNames
{
get { return _specialColumnNames; }
set { _specialColumnNames = value; }
}
}
</code></pre>
http://stackoverflow.com/questions/1428363/what-to-do-as-jr-programmer-if-you-are-totally-stuck-but-restricted-from-communic/1428389#14283897Answer by rball for What to do as Jr programmer if you are totally stuck but restricted from communicating with the other devs?rball2009-09-15T16:58:08Z2009-09-15T16:58:08Z<p>It can't be that business critical if they've told you not to talk to anyone and they are leaving it to a junior developer. They should be able to give you 10 minutes of time to clear up the few issues you have if you need it. Just don't come to them asking "How does MVC work" as there are a lot of tutorials out there that show you how.</p>
<p>I would say first google the issue you are having, maybe ask a specific question here to further your progress, and work towards it without getting too worked up. If that fails, then go ask them, no matter what "they" said.</p>
http://stackoverflow.com/questions/1409096/what-is-the-hql-equivalent-of-this-sql0What is the HQL equivalent of this SQL?rball2009-09-11T05:14:34Z2009-09-11T06:54:23Z
<pre><code>SELECT *
FROM [Group] g
INNER JOIN User2Group ug
**on g.Id != ug.GroupId**
INNER JOIN [Activity] a
on a.Id = g.ActivityId
WHERE g.UserId != 2
AND a.Lineage like '0,1,%'
</code></pre>
<p>Group > 1-n > User2Group < n-1 < User
m-n relationship</p>
<p>Activity > 1-n > Group
1-n</p>
<p>Trying to get all groups that a user has not already added to their account.</p>
<p>What I have so far:</p>
<pre><code>var groups = repository.SimpleQuery<Group>("from Group as g join fetch g.Users as u join fetch g.Activity as a where g.Type != ? and a.Lineage like ? and g.CreatedBy.Id != ?", Group.GroupType.Deleted, string.Format("{0}%", lineage), currentUser.Id);
</code></pre>
<p>What has me tripped up is the "on g.Id <strong>!=</strong> ug.GroupID"</p>
http://stackoverflow.com/questions/1405662/what-is-the-hql-equivalent-of-this-sql0What is the HQL equivalent of this SQLrball2009-09-10T14:35:18Z2009-09-10T21:34:31Z
<p>Trying to do a bit more complex query, and thought that HQL would be better for the job. Using nHibernate.</p>
<pre><code>SELECT * FROM [Group] g
INNER JOIN [User2Group] ug on g.Id = ug.GroupId
INNER JOIN [User] u ON u.Id = ug.UserId
INNER JOIN Activity a on g.ActivityId = a.Id
WHERE u.Id = ? AND a.Lineage LIKE '?%'
</code></pre>
<p>I guess I could also just use the SQL as well (?), but not sure really how to load up my objects that way.</p>
http://stackoverflow.com/questions/1406059/social-network-site-development/1406073#14060730Answer by rball for Social Network Site developmentrball2009-09-10T15:43:23Z2009-09-10T15:43:23Z<p>I found this book a great read and should help:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1847194788" rel="nofollow">http://www.amazon.com/ASP-NET-Social-Networking-Andrew-Siemer/dp/1847194788</a></p>
http://stackoverflow.com/questions/1379871/extending-a-asp-net-boundfield1Extending a (ASP.NET) BoundFieldrball2009-09-04T15:12:09Z2009-09-04T21:42:57Z
<p>I would like to create a control that extends the BoundField that's used within a GridView. What I'd like to do is provide another property named HighlightField that will be similar to the DataField property in that I want to give it the name a data column. Given that data column it would see if the value is true or false and highlight the given text within the given column on the given row.</p>
<p>Some psuedo-code if that doesn't make sense:</p>
<pre><code><asp:GridView id="grid">
<Columns>
<asp:BoundField DataField="Name" />
<cc:HighlightField DataField="Name" HighlightField="IsHighlighted" />
</Columns>
</asp:GridView>
</code></pre>
<p>And then within the databind or something:</p>
<pre><code>if(this row's IsHighlighted value is true)
set the CssClass of this datacell = "highlighted"
(or wrap a span tag around the text)
</code></pre>
<p>Ravish pointed me in the correct direction, here's what I ended up with:</p>
<pre><code>public class HighlightedBoundField : BoundField
{
public string HighlightField
{
get { return ViewState["HighlightField"].ToString(); }
set
{
ViewState["HighlightField"] = value;
OnFieldChanged();
}
}
public override void InitializeCell(DataControlFieldCell cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex)
{
base.InitializeCell(cell, cellType, rowState, rowIndex);
bool isDataRowAndIsHighlightFieldSpecified = cellType == DataControlCellType.DataCell && !string.IsNullOrEmpty(HighlightField);
if (isDataRowAndIsHighlightFieldSpecified)
{
cell.DataBinding += new EventHandler(cell_DataBinding);
}
}
void cell_DataBinding(object sender, EventArgs e)
{
TableCell cell = (TableCell)sender;
object dataItem = DataBinder.GetDataItem(cell.NamingContainer);
cell.Text = DataBinder.GetPropertyValue(dataItem, DataField).ToString();
bool highlightThisCellsText = Convert.ToBoolean(DataBinder.GetPropertyValue(dataItem, HighlightField));
if (highlightThisCellsText)
{
cell.CssClass += " highlight";
}
}
}
</code></pre>
http://stackoverflow.com/questions/1379890/in-what-order-do-i-increase-my-asp-net-knowledge/1379931#13799311Answer by rball for In what order do I increase my ASP.NET Knowledge?rball2009-09-04T15:24:12Z2009-09-04T15:24:12Z<p>Geez man, have some fun with it.</p>
<p>Pick something that you'd like to make and then start making it. If a book helps you to make it faster/easier/whatever then get the book. If the project is at work, then learn the necessary skills needed to do the project and get it done. </p>
<p>I'd say I've learned the most by reading some blogs, and doing my own projects because they are fun. Who the hell goes and sits down and reads a 500 page book on tech crap? You could, and you could have no life. Or you could be pragmatic and use parts of the book to get real world things working and learn more about the process of completing something than just coding. Course, you'd learn coding along the way.</p>
http://stackoverflow.com/questions/1379767/i-know-im-doing-validation-wrong-please-persuade-me-to-stop/1379788#13797880Answer by rball for I know I'm doing validation wrong. Please persuade me to stop :)rball2009-09-04T14:56:53Z2009-09-04T15:19:14Z<p>Seems like a whole lot of complexity with no benefit. Just because you can doesn't mean you should.</p>
<p>Instead of a CheckSyntax(string value) that returns a IP (This method is poorly worded btw) I would just have something like a </p>
<pre><code>bool IsIP(string)
</code></pre>
<p>Then you could put this in a utility class, or a base class, or a separate abstraction someplace.</p>
http://stackoverflow.com/questions/1306951/jquery-with-asp-net-webforms-for-a-poor-old-server-dev/1307001#13070010Answer by rball for jQuery with ASP.NET WebForms for a poor old server dev....rball2009-08-20T15:32:52Z2009-08-20T15:32:52Z<p>Use Kieron's answer and then...</p>
<pre><code>$("#<%= rbnDontLimit.ClientID %>").click(function() {
$(".dcDetails").attr('disabled','false');
}
</code></pre>
<p>could also be changed to:</p>
<pre><code>$("#<%= rbnDontLimit.ClientID %>").click(function() {
$(".dcDetails > :checkbox").attr('disabled','disabled');
}
</code></pre>
http://stackoverflow.com/questions/1266552/what-is-the-best-way-to-validate-date-and-time/1266888#12668880Answer by rball for What is the best way to validate date and time.rball2009-08-12T15:23:28Z2009-08-12T15:23:28Z<p>Both with emphasis on the server side. Sometimes people will block javascript or a prior error will not let the validation script run.</p>
<p>On the server either do a DateTime.Parse or the better DateTime.TryParse.</p>
http://stackoverflow.com/questions/1240950/audit-with-subsonic/1241041#12410411Answer by rball for Audit with SubSonicrball2009-08-06T19:58:38Z2009-08-06T19:58:38Z<p>It has the built in CreatedOn, CreatedBy, ModifiedOn, and ModifiedBy columns that you would just need to add to your table. For further audit capabilities I would suggest writing triggers.</p>
http://stackoverflow.com/questions/1240905/how-is-enforced-the-separation-of-concerns-in-asp-net-mvc/1240930#12409302Answer by rball for How is ENFORCED the separation of concerns in ASP.NET MVC ?rball2009-08-06T19:37:14Z2009-08-06T19:37:14Z<p>I don't think it enforces it, so they probably mispoke. Like you said, "suggests" or "promotes" is a better word.</p>
http://stackoverflow.com/questions/1240839/jquery-modifying-the-value-of-href/1240859#12408590Answer by rball for jquery modifying the value of hrefrball2009-08-06T19:26:07Z2009-08-06T19:26:07Z<p>Did this not work?</p>
<p>$('.moo').attr('href', '<a href="http://root.net?iframe=true&width=600&height=300e" rel="nofollow">http://root.net?iframe=true&width=600&height=300e</a>');</p>
http://stackoverflow.com/questions/1214052/should-i-use-areas-or-renderaction-in-asp-net-mvc2Should I use Areas or RenderAction in ASP.NET MVC?rball2009-07-31T18:16:14Z2009-07-31T22:00:52Z
<p>I've only read a few tidbits here and there about areas so far and haven't actually used them. Same for RenderAction, but I am running into a problem where I want to separate a certain piece of the page that is being used across all pages but has it's own functionality. With webforms I'd just be using a control. With MVC I was leaning towards the RenderAction method, and then bam today v2 preview 1 comes out with the "areas" support. RenderAction never really seemed all that support either being pushed out into the futures project.</p>
<p>My guess is that you'd want to now stay away from RenderAction as areas seems to have more future support. Right now though it seems that you'd need to create a entire new project just to have an "area"?</p>
<p>So I'd have a SideBar project, a BreadCrumb project, a UserLoggedIn project...yikes.</p>
<p>How the heck are people separating everything out? I can't be the only one that is running into this.</p>
http://stackoverflow.com/questions/1178244/is-doing-a-bit-of-freelancing-while-working-full-time-a-good-idea/1178258#11782581Answer by rball for Is doing a bit of freelancing while working full time a good idea?rball2009-07-24T15:00:26Z2009-07-24T15:00:26Z<p>If you can do it on the side and it doesn't relate to your current employment, in today's economy I don't see why not.</p>
http://stackoverflow.com/questions/327475/which-open-source-projects-uses-the-castle-activerecord/329077#329077Comment by rball on which open source project(s) uses the castle activerecord?rball2009-11-27T21:19:41Z2009-11-27T21:19:41ZDo any of these show a use of complex queries or optimized updates? They all seem like simple projects.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804706#1804706Comment by rball on How can I store and query schedule data?rball2009-11-26T19:24:33Z2009-11-26T19:24:33ZWow, simply awesome. As far as I can tell this works, and the code you've provided was super easy to setup and test.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804706#1804706Comment by rball on How can I store and query schedule data?rball2009-11-26T18:15:33Z2009-11-26T18:15:33ZThanks I'll digest and get back to you.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804746#1804746Comment by rball on How can I store and query schedule data?rball2009-11-26T18:14:58Z2009-11-26T18:14:58ZThanks, a lot of information here, let me check it out and I'll get back to you. Much appreciated.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804746#1804746Comment by rball on How can I store and query schedule data?rball2009-11-26T17:10:36Z2009-11-26T17:10:36ZAgain, pretty cool, but how the heck do I see an outlook of the dates themselves? Like, how would I query that to show all events coming up in the next two weeks.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804706#1804706Comment by rball on How can I store and query schedule data?rball2009-11-26T17:06:28Z2009-11-26T17:06:28ZI think the only problem is how do I correlate the event with an actual date? Say that I have a view of the next week, how would I know which days to show with the query above? I think it would show that there is the event in the next week, but not the particular days - at least I think...http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804698#1804698Comment by rball on How can I store and query schedule data?rball2009-11-26T16:52:17Z2009-11-26T16:52:17ZHourly would be fine, but I don't think it's that difficult and I don't need anything to run, but instead have a way to see all events across a date period, not just the first one.http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data/1804706#1804706Comment by rball on How can I store and query schedule data?rball2009-11-26T16:50:20Z2009-11-26T16:50:20ZLooks cool, that seems like it'll work for the first two just fine.http://stackoverflow.com/questions/1590280/how-can-i-keep-a-jquery-dialog-on-the-screenComment by rball on How can I keep a jQuery dialog on the screen?rball2009-11-26T15:40:13Z2009-11-26T15:40:13ZUnfortunately nohttp://stackoverflow.com/questions/1537783/will-the-spark-view-engine-interoperate-with-webforms-master-pages/1539298#1539298Comment by rball on Will the Spark view engine interoperate with webforms master pages?rball2009-11-21T02:04:59Z2009-11-21T02:04:59ZSpark already does this itself. The problem isn't rendering the correct file, it's having the file .spark or .aspx use a single master page.http://stackoverflow.com/questions/659552/why-should-or-shouldnt-i-prefix-fields-with-m-in-c/659923#659923Comment by rball on Why should (or shouldn't) I prefix fields with 'm_' in C#?rball2009-11-20T23:51:37Z2009-11-20T23:51:37ZIt's just convention. Makes it easy to find the interface as well. I have tried removing it and I didn't really like it as some concrete classes were named the same ICustomerService and CustomerService, if you drop the I then they are the same. I don't want to have to think about naming it more cleverly, I just want to move on with the code.http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771303#1771303Comment by rball on What are some bad programming habits to look out for and avoid?rball2009-11-20T17:58:54Z2009-11-20T17:58:54ZGreat answer. I do finish, but what ends up happening is that I have to cut "cool" features left and right and go with the most simple version of what I have in my mind. Once I get it out the door, then I start to add cool crap based on what other people have to say about the software.http://stackoverflow.com/questions/1752718/how-do-i-select-more-than-one-element-using-the-jquery-attribute-selector/1752763#1752763Comment by rball on How do I select more than one element using the jQuery attribute selectorrball2009-11-18T00:29:45Z2009-11-18T00:29:45ZThe error I'm seeing isn't the selector, it's trying to set the text of both of them later.http://stackoverflow.com/questions/1752718/how-do-i-select-more-than-one-element-using-the-jquery-attribute-selector/1752763#1752763Comment by rball on How do I select more than one element using the jQuery attribute selectorrball2009-11-18T00:25:34Z2009-11-18T00:25:34ZAlso just a FYI: From jQuery docs Quotes are optional in most cases, but should be used to avoid conflicts when the value contains characters like "]". So i don't think the quotes are doing it.http://stackoverflow.com/questions/1752718/how-do-i-select-more-than-one-element-using-the-jquery-attribute-selector/1752763#1752763Comment by rball on How do I select more than one element using the jQuery attribute selectorrball2009-11-18T00:23:28Z2009-11-18T00:23:28ZUnexpected call to method or property access.