User Haydar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:53:08Zhttp://stackoverflow.com/feeds/user/288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1682482/jquery-hover-problem/1682694#16826940Answer by Haydar for jQuery hover problem!Haydar2009-11-05T18:43:28Z2009-11-05T18:43:28Z<p>I'm going to take a stab and say that your mouse out event of the hover for your slider is firing because the < and > graphics are outside of the dive that defines slider. Have you tried putting those inside of the slider div?</p>
http://stackoverflow.com/questions/1682577/jqgrid-not-completing0JQGrid Not CompletingHaydar2009-11-05T18:25:53Z2009-11-05T18:25:53Z
<p>I am attempting to use jqGrid with asp.net. The grid comes back greyed (disabled?) and the Loading... div is still visible. But my data is in the grid just fine. From reading other questions and forums my problem is being caused by something I have set wrong. </p>
<p>I'm hoping someone can look at my code and my json response and point me in the right direction. Any help on this would be appreciated as I have struggled with this for the last 6 hours.</p>
<p><strong>jqGrid function</strong></p>
<pre><code> <script language="javascript" type="text/javascript">
$(document).ready(function() {
$("#btn1").click(function(e) {
$("#tblJQGrid1").jqGrid({
jsonReader: {
root: "rtsList",
page: "page",
total: "total",
records: "records",
repeatitems: false,
id: "0"
},
datatype: function() {
$.ajax(
{
url: "RTSServices.asmx/GetRTSList",
data: "{}",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
complete: function(jsondata, stat) {
if (stat == "success") {
var thegrid = jQuery("#tblJQGrid1")[0];
thegrid.addJSONData(eval("(" + jsondata.responseText + ")").d);
return true;
}
}
});
},
colNames: ['field1', 'field2'],
colModel: [
{ name: 'field1', index: 'field1', width: 150 },
{ name: 'field2', index: 'field2', width: 150}],
pager: jQuery('#Pager1'),
rowNum: 10,
rowList: [10, 20, 30],
sortname: 'field1',
sortorder: 'desc',
viewrecords: true,
caption: 'My first grid'
});
});
});
</script>
</code></pre>
<p><strong>The json response taken from fiddler</strong></p>
<pre><code>{"d":{"__type":"BusinessLogicLayer.ReturnToSupplierList","total":"3","page":"1","records":"3","rtsList":[{"field1":"fld11","field2":"fld12"},{"field1":"fld21","field2":"fld22"},{"field1":"fld31","field2":"fld32"}]}}
</code></pre>
<p>Just to demonstrate that the data is being populated in the grid. I have included the HTML (rather than a screenshot) of the grid after being populated.</p>
<pre><code> <div style="width: 300px;" id="gview_tblJQGrid1" class="ui-jqgrid-view">
<div class=
"ui-jqgrid-titlebar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix">
<a class="ui-jqgrid-titlebar-close HeaderButton" role="link" href=
"javascript:void(0)"></a><span class="ui-jqgrid-title">My first
grid</span>
</div>
<div class="ui-state-default ui-jqgrid-hdiv" style="width: 300px;">
<div class="ui-jqgrid-hbox">
<table class="ui-jqgrid-htable" style="width: 272px;" role="grid"
aria-labelledby="gbox_tblJQGrid1" border="0" cellpadding="0"
cellspacing="0">
<thead>
<tr class="ui-jqgrid-labels" role="rowheader">
<th style="width: 136px;" role="columnheader" class=
"ui-state-default ui-th-column">
<span class="ui-jqgrid-resize"> </span>
<div class="ui-jqgrid-sortable" id="jqgh_field1">
field1
</div>
</th>
<th style="width: 136px;" role="columnheader" class=
"ui-state-default ui-th-column">
<span class="ui-jqgrid-resize"> </span>
<div class="ui-jqgrid-sortable" id="jqgh_field2">
field2
</div>
</th>
</tr>
</thead>
</table>
</div>
</div>
<div style="height: 150px; width: 300px;" class="ui-jqgrid-bdiv">
<table style="width: 272px;" aria-labelledby="gbox_tblJQGrid1"
aria-multiselectable="false" role="grid" class="ui-jqgrid-btable" id=
"tblJQGrid1" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr id="fld11" role="row" class="ui-widget-content jqgrow">
<td role="gridcell" style="width: 136px;" title="fld11">
fld11
</td>
<td role="gridcell" style="width: 136px;" title="fld12">
fld12
</td>
</tr>
<tr id="fld21" role="row" class="ui-widget-content jqgrow">
<td role="gridcell" style="" title="fld21">
fld21
</td>
<td role="gridcell" style="" title="fld22">
fld22
</td>
</tr>
<tr id="fld31" role="row" class="ui-widget-content jqgrow">
<td role="gridcell" style="" title="fld31">
fld31
</td>
<td role="gridcell" style="" title="fld32">
fld32
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="ui-jqgrid-resize-mark" id="rs_mtblJQGrid1">
</div>
<div class="ui-state-default ui-jqgrid-pager corner-bottom" style=
"width: 300px;" id="Pager1">
<div id="pg_Pager1" class="ui-pager-control" role="group">
<table class="ui-pg-table" style="width: 100%; table-layout: fixed;"
role="row" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td id="Pager1_left" align="left"></td>
<td id="Pager1_center" style="white-space: nowrap; width: 244px;"
align="center">
<table style="table-layout: auto;" class="ui-pg-table" border=
"0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td id="first" class=
"ui-pg-button ui-corner-all ui-state-disabled"></td>
<td id="prev" class=
"ui-pg-button ui-corner-all ui-state-disabled"></td>
<td class="ui-pg-button ui-state-disabled" style=
"width: 4px;"></td>
<td>
Page <input class="ui-pg-input" size="2" maxlength="7"
value="0" role="textbox" type="text"> of <span id=
"sp_1">3</span>
</td>
<td class="ui-pg-button ui-state-disabled" style=
"width: 4px;"></td>
<td id="next" class="ui-pg-button ui-corner-all"></td>
<td id="last" class="ui-pg-button ui-corner-all"></td>
<td>
<select class="ui-pg-selbox" role="listbox">
<option role="option" value="10" selected="selected">
10
</option>
<option role="option" value="20">
20
</option>
<option role="option" value="30">
30
</option>
</select>
</td>
</tr>
</tbody>
</table>
</td>
<td id="Pager1_right" align="right">
<div style="text-align: right;" class="ui-paging-info">
View 1 - 3 of 3
</div>
</td>
</tr>
</tbody>
</table>
</div>
</code></pre>
http://stackoverflow.com/questions/10256/android-development20Android DevelopmentHaydar2008-08-13T19:15:07Z2009-10-27T12:36:16Z
<p>I am interested in trying some Android Development and I've not had much luck getting started. I'm not much of a Linux person but I have an Ubuntu box setup that I attempted to install the android SDK and plugins for Eclipse. But I'm not having much luck getting it setup. </p>
<p>I'm looking for some guidance for what would be the best way for me to do this. </p>
<ul>
<li>Should I use a different Linux distro? </li>
<li>Is eclipse the wrong way to go? </li>
<li>I was hoping this was a way for me to get some Linux exposure too,
so I don't even know if there is a way to accomplish this in Windows,
but I'm sure someone else would be interested to know that info.</li>
</ul>
<p>I have looked at the instructions at Google, but everything I read assumes a prior knowledge of Linux, Eclipse or both. There also doesn't seem to be many troubleshooting helps.</p>
http://stackoverflow.com/questions/546411/assign-unique-id-within-groups-of-records0Assign Unique ID within groups of recordsHaydar2009-02-13T15:44:30Z2009-07-10T16:41:16Z
<p>I have a situation where I need to add an arbitrary unique id to each of a group of records. It's easier to visualize this below. </p>
<p>Edited 11:26 est:
Currently the lineNum field has garbage. This is running on sql server 2000. The sample that follows is what the results should look like but the actual values aren't important, the numbers could anything as long as the two combined fields can be used for a unique key.</p>
<pre><code>OrderID lineNum
AAA 1
AAA 2
AAA 3
BBB 1
CCC 1
CCC 2
</code></pre>
<p>The value of line num is not important, but the field is only 4 characters. This needs to by done in a sql server stored procedure. I have no problem doing it programatically.</p>
http://stackoverflow.com/questions/230044/force-a-manual-merge-of-certain-files-within-tortoisesvn1Force a manual Merge of certain files within TortoiseSVNHaydar2008-10-23T14:52:40Z2008-11-17T16:45:04Z
<p><strong>Is there some way to force some files to not be merged automatically (force me to manage the merge) when merging a branch back into the main tree?</strong> </p>
<p>For example, I have web.config files that have specific paths based on whether I'm in the Dev or Production system. So, when I need to merge my dev branch back into main, I don't want to modify some of the tags, but other information might need to be updated.</p>
<p>The problem is that the merge may automatically update the settings that need to remain the same. I can easily revert back to the original, but then any new settings would be lost. It seems to be the easiest way to handle this would be for me to manually merge the changes in this case. </p>
<p>It's possible I'm coming at this from the wrong direction since I'm new to Tortoise and SVN.</p>
<p>In addition to the config example that has some good answers below. <strong>Is there a way to force all files to be handled manually during a merge?</strong> It seems like there should be a flag that could be applied to the files to simply make it look like there is a conflict to the flagged file and to handle the merge accordingly.</p>
http://stackoverflow.com/questions/4941/virtual-machine-supporting-multiple-displays2Virtual machine supporting multiple displaysHaydar2008-08-07T16:41:58Z2008-11-06T09:29:59Z
<p>Is there a way to get MS virtual PC 2007 to support multiple displays? Or is there another virtual machine product available that will allow me to work with multiple displays?</p>
<p>At the company I work for we do all of our development in virtual machines.
We currently use MS Virtual PC 2007 for this. I would love to be able to spread my machine's display across multiple displays, but I don't know of any way to do this. Any advice would be appreciated.</p>
http://stackoverflow.com/questions/73456/asp-net-dropdownbox-selectedindex-not-being-maintained0asp.net dropDownBox selectedIndex not being maintained.Haydar2008-09-16T15:17:21Z2008-11-05T10:21:32Z
<p>I have a weird problem with a dropdownbox selectedIndex always being set to 0 upon postback. I'm not accidentally rebinding it in my code. In fact I've placed a breakpoint at the very first line of the page_load event and the value is already set to zero. The dropdown is in the master page of my project, I don't know if that makes a difference. I'm not referencing the control in my content holder. </p>
<p>If I set my autoPostBack = 'true' the page works fine. I don't have to change any code and the selectedIndex is maintained. I have also tried setting enableViewState on and off and it doesn't make a difference. At this point I'm grasping at straws to figure out what's going on. I've never had this problem before.</p>
<p>Here is the code in my page_load event.</p>
<pre><code> If CartEstablished Then
txtCustNum.Visible = False
btnCustSearch.Visible = False
lblCustNum.Visible = True
ddlSalesType.Visible = False
lblSalesType.Visible = True
ddlTerms.Visible = False
lblTerms.Visible = True
lblTerms.Text = TermsDescription
Else
txtCustNum.Visible = True
btnCustSearch.Visible = True
lblCustNum.Visible = False
lblSalesType.Visible = False
ddlSalesType.Visible = True
lblTerms.Visible = False
ddlTerms.Visible = True
End If
If Page.IsPostBack Then
GetUIValues()
Else
LoadTermCodes()
End If
</code></pre>
<p>The LoadTermCodes is where I bind the dropdownlist that is causing me problems.</p>
http://stackoverflow.com/questions/229935/net-is-there-a-click-and-drag-desktop-like-control/230121#2301211Answer by Haydar for .NET: is there a Click-and-drag "Desktop-Like" control?Haydar2008-10-23T15:14:34Z2008-10-23T15:32:31Z<p>This depends on whether this is a windows application or a web browser based application. In either case you need to have some sort of container to manage the locations of controls. You can manage the position of controls inside of a container with their X and Y coordinates. </p>
<p>You would handle the actual movement using the drag events. So you have drag start, while dragging (you might show a place holder graphic or change the cursor), and finally a drag end (set the control's x and y to the new position). Obviously these aren't the actual event names, but a search for "how to handle drag events" should get you started.</p>
<p>In a web environment, I know jquery has dragging capability built in. So you might want to look at that. The one big thing you'll have to be careful of is maintaining the positions of your controls between postbacks. I'm not sure what would happen in this case.</p>
http://stackoverflow.com/questions/10230/checking-for-string-contents-string-length-vs-empty-string4Checking for string contents? string Length Vs Empty StringHaydar2008-08-13T19:03:27Z2008-10-02T17:32:08Z
<p>Which is more efficient for the compiler and the best practice for checking whether a string is blank? </p>
<ol>
<li>Checking whether the length of the string == 0</li>
<li>Checking whether the string is empty (strVar == "")</li>
</ol>
<p>Also, does the answer depend on language?</p>
http://stackoverflow.com/questions/50579/dopostback-not-rendering-on-postback/50593#505930Answer by Haydar for __doPostBack not rendering on postbackHaydar2008-09-08T20:28:16Z2008-09-08T20:46:10Z<p>The first thing I would look at is whether you have any asp controls (such as linkbutton, comboboxes,that don't normally generate a submit but requre a postback) being displayed on the page.
<strong>The __doPostback function will only be put into the page if ASP thinks that one of your controls requires it.</strong></p>
<p>If you aren't using one of those you can use: </p>
<pre><code>Page.ClientScript.GetPostBackClientHyperlink(controlName, "")
</code></pre>
<p>to add the function to your page</p>
http://stackoverflow.com/questions/44181/sql-select-like-column-from-two-tables/44189#441890Answer by Haydar for SQL: Select like column from two tablesHaydar2008-09-04T17:06:03Z2008-09-04T17:06:03Z<p>You can use a union select: </p>
<pre><code>Select columnA from table1 union select columnA from table2
</code></pre>
http://stackoverflow.com/questions/31090/what-control-is-this-open-button-with-drop-down/31190#311904Answer by Haydar for What control is this? ("Open" Button with Drop Down)Haydar2008-08-27T20:31:18Z2008-08-27T20:31:18Z<p>I think what you are looking for is called a toolStripSplitButton. It is only available in a toolStrip. But you can add a toolStripContainer anywhere on your form and then put the toolStrip and toolStripSplitButton inside your container. </p>
<p>You won't want to show the grips so you'll want to set your gripMargin = 0. You can also set your autosize=true so that the toolstrip conforms to your button. The button will just look like a normal button (except for the split part) on your form.</p>
http://stackoverflow.com/questions/8398/how-do-i-debug-javascript-in-visual-studio-2005/16898#168980Answer by Haydar for How do I debug Javascript in Visual Studio 2005?Haydar2008-08-19T20:35:09Z2008-08-19T20:35:09Z<p>You can set a breakpoint within javascript in VS2005 but in addition to debugging needing to be enabled in IE, you can only set the breakpoint in a .js file. you cannot debug any inline javascript code. </p>
<p>I also sometimes have problems when trying to debug my javascript when using the attach process method to go into debugging. I will normally use the "Start debugging" green arrow. You will know that your code will stop at the breakpoint in your .js file if the breakpoint icon (Burgandy Circle by default) is filled in. If it's not filled in you will never stop there.</p>
<p>Finally, make sure you have debugging enabled in your asp.net configuration settings.</p>
http://stackoverflow.com/questions/12171/what-kinds-of-non-technical-courses-should-a-software-engineer-or-computer-scient/12188#121882Answer by Haydar for What kinds of non-technical courses should a software engineer or computer scientist take?Haydar2008-08-15T12:27:29Z2008-08-15T12:27:29Z<p>A Technical Writing course is very helpful.</p>
http://stackoverflow.com/questions/10256/android-development/10288#102883Answer by Haydar for Android DevelopmentHaydar2008-08-13T19:33:44Z2008-08-13T19:47:53Z<p>@bpapa</p>
<p>It's a perfectly valid question. The number one reason was that The Iphone SDK wasn't out when I started looking at it. But I don't have a particular App in mind. </p>
<ol>
<li>I'm more likely to own an Android phone in the future since I'm not an AT&T customer (I live in the boonies so there is no 3G support)</li>
<li>It will support more types of phones such as normal handset types, touchscreens and full blown PDA's.</li>
<li>It's open source.</li>
</ol>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/4980#498020Answer by Haydar for How do I programmatically create a PDF in my .NET application?Haydar2008-08-07T17:09:29Z2008-08-12T15:29:54Z<p>I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entire document. Instead I created a PDF Form, then filled in the fields of the form using a small class. The most difficult time I had was figuring out how to get the the filled in form into the actual memory stream. The work of the class is in the following function. I can give more details if someone wants them. The sourceforge url is: <a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow"><a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">http://sourceforge.net/projects/itextsharp/</a></a> </p>
<pre><code> Public Function GeneratePDF() As IO.MemoryStream
Dim pdfTemplate As PdfReader
Dim stamper As PdfStamper
Dim tempPDF As PdfReader
Dim doc As Document
Dim msTemp As MemoryStream
Dim pCopy As PdfCopy
Dim msOutput As New MemoryStream
pdfTemplate = New PdfReader(m_FormName)
doc = New Document
pCopy = New PdfCopy(doc, msOutput)
doc.Open()
For Each pg As FormPage In FormPages
msTemp = New IO.MemoryStream
pdfTemplate = New PdfReader(m_FormName)
stamper = New PdfStamper(pdfTemplate, msTemp)
For Each fld As FormField In pg.Fields
stamper.AcroFields.SetField(fld.fieldName, fld.fieldValue)
Next
stamper.FormFlattening = True
stamper.Close()
tempPDF = New PdfReader(msTemp.ToArray)
pCopy.AddPage(pCopy.GetImportedPage(tempPDF, pdfTemplate.NumberOfPages))
pCopy.FreeReader(tempPDF)
Next
doc.Close()
Return msOutput
End Function
</code></pre>
http://stackoverflow.com/questions/4941/virtual-machine-supporting-multiple-displays/5045#50450Answer by Haydar for Virtual machine supporting multiple displaysHaydar2008-08-07T17:53:51Z2008-08-07T17:53:51Z<p>Does anyone know if you can do this in MS Virtual PC? I'll have to try VMware.</p>http://stackoverflow.com/questions/1682482/jquery-hover-problemComment by Haydar on jQuery hover problem!Haydar2009-11-05T18:34:42Z2009-11-05T18:34:42ZI just want to try to help clarify what you are describing. When you go onto the graphic slide show (slider) 2 large < and > signs appear. But when you actually move your mouse on top of the signs they disappear. Correct?http://stackoverflow.com/questions/481395/t-sql-identity-scopeidentity-output-and-other-methods-of-retrieving-last/1427650#1427650Comment by Haydar on T-SQL: @@IDENTITY, SCOPE_IDENTITY(), OUTPUT and other methods of retrieving last identityHaydar2009-10-02T14:19:48Z2009-10-02T14:19:48ZI just wanted to mention that the bug above occurs when parallelism is used. But this wouldn't effect cases where a single insert is performed.
Heres a quote from Microsoft. "whenever a parallel query plan is generated @@IDENTITY and SCOPE_IDENTITY() are not being updated consistenly and can't be relied upon."http://stackoverflow.com/questions/230044/force-a-manual-merge-of-certain-files-within-tortoisesvn/230087#230087Comment by Haydar on Force a manual Merge of certain files within TortoiseSVNHaydar2008-10-23T15:20:36Z2008-10-23T15:20:36ZThat a good point. We already have the various configs in different files. We use a batch to apply the correct config for multiple environments, we just never used this on developer's machines. I'm going to broaden the question a bit. http://stackoverflow.com/questions/73456/asp-net-dropdownbox-selectedindex-not-being-maintained/74783#74783Comment by Haydar on asp.net dropDownBox selectedIndex not being maintained.Haydar2008-09-16T19:20:55Z2008-09-16T19:20:55Zyou can do it eather way. there are things i want to do when the page is posted back and other's i want to do if the page isn't posted back.http://stackoverflow.com/questions/73456/asp-net-dropdownbox-selectedindex-not-being-maintained/73543#73543Comment by Haydar on asp.net dropDownBox selectedIndex not being maintained.Haydar2008-09-16T16:34:31Z2008-09-16T16:34:31Zthe name of the control that is causing problems is ddlTermshttp://stackoverflow.com/questions/73456/asp-net-dropdownbox-selectedindex-not-being-maintained/73627#73627Comment by Haydar on asp.net dropDownBox selectedIndex not being maintained.Haydar2008-09-16T16:31:48Z2008-09-16T16:31:48ZI added the code that i use in the page_load eventhttp://stackoverflow.com/questions/73456/asp-net-dropdownbox-selectedindex-not-being-maintained/73543#73543Comment by Haydar on asp.net dropDownBox selectedIndex not being maintained.Haydar2008-09-16T16:31:14Z2008-09-16T16:31:14ZI'm quite sure it's something stupid i'm doing.