active questions tagged header - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:46:35Z http://stackoverflow.com/feeds/tag/header http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850407/wpf-datagrid-columnheaderstyle-contenttemplate-is-not-shown-in-full-height-until 1 WPF DataGrid: ColumnHeaderStyle ContentTemplate is not shown in full height until after resizing Philipp Schmid 2009-12-04T23:42:56Z 2009-12-07T21:02:42Z <p>This might be a bug in the WPF Toolkit DataGrid.</p> <p>In my Windows.Resources I define the following ColumnHeaderStyle:</p> <pre><code>&lt;Style x:Name="ColumnStyle" x:Key="ColumnHeaderStyle" TargetType="my:DataGridColumnHeader"&gt; &lt;Setter Property="ContentTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;TextBlock Text="{Binding Name}" /&gt; &lt;TextBlock Text="{Binding Data}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>Because my columns are generated dynamically, I am defining the columns in code:</p> <pre><code>private void CreateColumn(Output output, int index) { Binding textBinding = new Binding(string.Format("Relationships[{0}].Formula", index)); DataGridTextColumn tc = new DataGridTextColumn(); tc.Binding = textBinding; dg.Columns.Add(tc); tc.Header = output; } </code></pre> <p>where Output is a simple class with Name and Data (string) properties.</p> <p>What I observe is that <strong>only the Name property</strong> (first TextBlock control in the ContentTemplate's StackPanel) <strong>is shown</strong>. When I drag one of these column headers, I see the entire header (including the Data TextBlock). Only <strong>after manually resizing one of the columns are the column headers rendered correctly</strong>. Is there a way to get the column headers to show up correctly in code?</p> <p><strong>Update:</strong> as requested, here is the rest of my code for the repro.</p> <pre><code>public class Input { public Input() { Relationships = new ObservableCollection&lt;Relationship&gt;(); } public string Name { get; set; } public string Data { get; set; } public ObservableCollection&lt;Relationship&gt; Relationships { get; set; } } public class Output { public Output() { } public string Name { get; set; } public string Data { get; set; } } public class Relationship { public Relationship() { } public string Formula { get; set; } } </code></pre> <p>Here is the XAML markup:</p> <pre><code>&lt;Window x:Class="GridTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" xmlns:my="http://schemas.microsoft.com/wpf/2008/toolkit"&gt; &lt;Window.Resources&gt; &lt;SolidColorBrush x:Key="RowHeaderIsMouseOverBrush" Color="Red" /&gt; &lt;SolidColorBrush x:Key="RowBackgroundSelectedBrush" Color="Yellow" /&gt; &lt;BooleanToVisibilityConverter x:Key="bool2VisibilityConverter" /&gt; &lt;Style x:Key="RowHeaderGripperStyle" TargetType="{x:Type Thumb}"&gt; &lt;Setter Property="Height" Value="2"/&gt; &lt;Setter Property="Background" Value="Green"/&gt; &lt;Setter Property="Cursor" Value="SizeNS"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type Thumb}"&gt; &lt;Border Padding="{TemplateBinding Padding}" Background="{TemplateBinding Background}"/&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;Style x:Name="ColumnStyle" x:Key="ColumnHeaderStyle" TargetType="my:DataGridColumnHeader"&gt; &lt;Setter Property="ContentTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;TextBlock Text="{Binding Name}" /&gt; &lt;TextBlock Text="{Binding Data}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;!-- from http://www.codeplex.com/wpf/WorkItem/View.aspx?WorkItemId=9193 --&gt; &lt;Style x:Name="RowHeaderStyle" x:Key="RowHeaderStyle" TargetType="my:DataGridRowHeader"&gt; &lt;Setter Property="Content" Value="{Binding}" /&gt; &lt;Setter Property="ContentTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="{Binding Path=Content.Name, RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type my:DataGridRowHeader}}}" VerticalAlignment="Center"/&gt; &lt;TextBlock Padding="5"&gt;|&lt;/TextBlock&gt; &lt;TextBlock Text="{Binding Path=Content.Data, RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type my:DataGridRowHeader}}}" VerticalAlignment="Center"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;DataTemplate x:Key="CellTemplate"&gt; &lt;StackPanel&gt; &lt;TextBox Text="{Binding Formula, Mode=TwoWay}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;DataTemplate x:Key="CellEditTemplate"&gt; &lt;StackPanel&gt; &lt;TextBox Text="{Binding Formula, Mode=TwoWay}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/Window.Resources&gt; &lt;Grid&gt; &lt;my:DataGrid Name="dg" ColumnHeaderStyle="{StaticResource ColumnHeaderStyle}" RowHeaderStyle="{StaticResource RowHeaderStyle}" HeadersVisibility="All" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>And finally the code-behind:</p> <pre><code>/// &lt;summary&gt; /// Interaction logic for Window1.xaml /// &lt;/summary&gt; public partial class Window1 : Window { public Window1() { InitializeComponent(); Inputs = new List&lt;Input&gt;(); Outputs = new List&lt;Output&gt;(); Input i1 = new Input() { Name = "I 1", Data = "data 1" }; Input i2 = new Input() { Name = "I 2", Data = "data 2" }; Inputs.Add(i1); Inputs.Add(i2); Output o1 = new Output() { Name = "O 1", Data = "data 1" }; Output o2 = new Output() { Name = "O 2", Data = "data 2" }; Output o3 = new Output() { Name = "O 3", Data = "data 3" }; Outputs.Add(o1); Outputs.Add(o2); Outputs.Add(o3); Relationship r1 = new Relationship() { Formula = "F1" }; Relationship r2 = new Relationship() { Formula = "F2" }; Relationship r3 = new Relationship() { Formula = "F3" }; Relationship r4 = new Relationship() { Formula = "F4" }; i1.Relationships.Add(r1); i1.Relationships.Add(r2); i2.Relationships.Add(r3); i2.Relationships.Add(r4); CreateColumn(o1, 0); CreateColumn(o2, 1); CreateColumn(o3, 2); dg.Items.Add(i1); dg.Items.Add(i2); dg.ColumnWidth = DataGridLength.SizeToHeader; } private void CreateColumn(Output output, int index) { Binding textBinding = new Binding(string.Format("Relationships[{0}].Formula", index)); DataGridTextColumn tc = new DataGridTextColumn(); tc.Binding = textBinding; dg.Columns.Add(tc); tc.Header = output; } private List&lt;Output&gt; Outputs { get; set; } private List&lt;Input&gt; Inputs { get; set; } } </code></pre> http://stackoverflow.com/questions/1861654/is-there-a-way-to-prevent-a-header-defined-c-function-from-being-treated-as-inl 0 Is there a way to prevent a header defined c++ function from being treated as inlined. yan bellavance 2009-12-07T17:45:54Z 2009-12-07T18:27:59Z <p>Hi, I am making a Qt application and as I was coding, I took the habit of defining my slots in the header. I found it was easier for me to develop that way though I still define normal functions in the .cpp (unless the function is really small). But now there are some worries from my colleague that putting these in the header is bad practice because the fact of defining them in the header makes them inline so I am looking into the matter to understand everything that is going on. This is the reason I was given:<br><br></p> <p>"Even in-lined functions (other than as required by classes) is a highly debatable practice. In theory, it creates faster, but larger code (avoids function calls and returns by duplicating code). However, several people have noticed that often using in-lining actually creates slower code. The reason why is because it can cause the code to get larger and exceed the size of what fits in one or more caches used at run-time. As a result it causes portions of the function to go in and out of cache every pass through some loop and the cache misses and subsequent reloads are far more costly than a function call to something already in another cache page. It’s an interesting situation and one that can’t be predicted, only observed by trial and error."</p> http://stackoverflow.com/questions/1861581/does-defining-a-function-inside-a-header-always-make-the-compiler-treat-it-as-inl 1 Does defining a function inside a header always make the compiler treat it as inline? yan bellavance 2009-12-07T17:37:32Z 2009-12-07T18:01:18Z <p>I just learned that defining a c++ function inside a class's header file make the function inline. But I know that putting the inline keyword next to a function is only a suggestion and the compiler wont necessarily follow it. Is this the same for header defined c++ functions and is there a difference in behavior between a standalone c++ function and a c++ function that is part of a class?</p> http://stackoverflow.com/questions/1857709/the-strangest-thing-with-obstart-and-headers 0 The strangest thing with ob_start and headers wazabii 2009-12-07T03:53:33Z 2009-12-07T04:23:28Z <p>ob_start and all the headers did not work on my webpage. I searched though my whole code and did not find anything wrong. Then I deleted all my code and placed a Header Location at the top of the dokument and it still didnt work so then I simply created a new document copied the code from the old document and then all of sudden it started to work.</p> <p>Do any of you understand why this phenomenon occur?</p> http://stackoverflow.com/questions/1854304/c-how-to-include-boost-library-header-in-vc6 0 C++ : How to include boost library header in VC++6? Lopper 2009-12-06T04:04:22Z 2009-12-06T04:21:57Z <p>I used <a href="http://shoddykid.blogspot.com/2008/07/getting-started-with-boost.html" rel="nofollow">this guide</a> to rebuild the boost library in VC++6 under windows XP. But is having problems trying to include the header files. By default, the boost library makes use of point 1 as follows to declare the header files. But if I used point 1, I get "fatal error C1083: Cannot open include file...". I tried using point 2 to declare and it seem to work but all the header files referenced internally by point 2 will have to be changed. This lead to a cascade of header declaration to be changed which is not realistic.</p> <p>Did I miss something? What is the correct way of including the header file without errors?</p> <pre><code>1) #include &lt;boost/interprocess/managed_shared_memory.hpp&gt; 2) #include "..\boost\interprocess\managed_shared_memory.hpp" </code></pre> http://stackoverflow.com/questions/1842770/consume-rest-api-from-net 1 Consume RESt API from .NET unknown (google) 2009-12-03T20:40:19Z 2009-12-03T23:40:53Z <p>Hi All,</p> <p>I am trying to consume REST API from my .NET Application. This API's are all written in JAVA. I am asked to pass the authentication credentials vis HTTP headers. How can I pass these authentication credentials like 'DATE', 'AUTHORIZATION' and 'Accept' via HTTP headers. </p> <p>Which class in .NET can I use to accomplish this task. Can anyone help me with this?</p> <p>All your help will be appreciated.</p> <p>Ajish.</p> http://stackoverflow.com/questions/1834794/nsdateformatter-i-dont-want-the-time 0 NSDateFormatter: I Don't want the time! Wes 2009-12-02T18:16:22Z 2009-12-02T20:06:55Z <p>I am playing around with the coredatabooks source code example from the apple website, or <a href="http://developer.apple.com/iPhone/library/samplecode/CoreDataBooks/index.html" rel="nofollow">here</a>. I am trying to set the books copyright date attribute value to replace the author as the tableview section header, and I need the date value to be <em>static</em>, meaning I don't need the time, otherwise all of the date values are different, and no two books objects with the same month day and year copyright date lineup under the same date because the time portion of the date value is changing...</p> <p>Here is the code from my RootViewController.m file that formats the datepicker date value for display in the section header:</p> <pre><code>- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { NSString *rawDateStr = [[[fetchedResultsController sections] objectAtIndex:section] name]; //convert default date string to NSDate... NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease]; [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss ZZ"]; NSDate *date = [formatter dateFromString:rawDateStr]; //convert NSDate to format we want... [formatter setDateFormat:@"EEEE MMMM d"]; NSString *formattedDateStr = [formatter stringFromDate:date]; return formattedDateStr; </code></pre> <p>}</p> <p>That outputs just fine, but it isnt letting me group books with the same copyright month day and year in the same section because again (I am assuming) the date value has the time as well. The actual saving of the date value from the datepicker is done in the EditingViewController.m file as follows:</p> <pre><code> - (IBAction)save { // Pass current value to the edited object, then pop. if (editingDate) { [editedObject setValue:datePicker.date forKey:editedFieldKey]; } </code></pre> <p>The save method currently takes the date as-is from the datepicker, so how do I modify that code to first copy the datepicker's date to a local variable and blank out the time in there and then use that value in the setValue statement so it groups correctly? PLEASE HELP! Thanks</p> http://stackoverflow.com/questions/1827760/date-formatting-inside-the-uitableview-section-heading-please-help 1 Date formatting inside the uitableview section heading, PLEASE HELP Wes 2009-12-01T17:42:17Z 2009-12-02T18:20:34Z <p>Let me start off by saying Im VERY new to iphone development, but Im trying really hard to learn, so any help any of you professionals out there are willing to share is greatly appreciated! So I have a question that would be SO awesome if someone could answer for me. I am studying up more one core data and have been using the core data books example from the apple developer website found <a href="http://developer.apple.com/iPhone/library/samplecode/CoreDataBooks/index.html" rel="nofollow">here</a>. It is a pretty straight forward application, but I am trying to change something and I can't figure out how to do it and it is driving me CRAZY!!! Natively, the app shows the author in the tableview section heading, with the title in the cell. I would like to change that and set the copyright date (one of the attributes of the book) as the section header. Right now, I can get it to show, but it shows the date in this format:</p> <p>2009-12-01 10:11:31 -0700</p> <p>But thats not the right format, Id like to use this format:</p> <p>Tuesday December 1</p> <p>Probably using this code:</p> <p>NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];</p> <p>[outputFormatter setDateFormat:@"EEEE MMMM d"];</p> <p>NSString *date = [outputFormatter stringFromDate:[NSDate date]]; </p> <p>but the problem is that the date value is coming in from the datepicker, and I can't figure out (with all this crazy 'key' business) how to format the date value that came from the picker and put it onto the section header. If you have any time to possibly follow the link to the apple wbsite above and poke around until you can answer my dilema, IT WOULD BE SO APPRECIATED!!!! Thank you. </p> <p>Okay so here is my code I put in the save method:</p> <pre><code> // Pass current value to the edited object, then pop. if (editingDate) { NSString *rawDate = (NSString *)datePicker.date; NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init]; [outputFormatter setDateFormat:@"yyyy-MM-dd"]; NSDate *date = (NSDate *)[outputFormatter dateFromString:rawDate]; [outputFormatter setDateFormat:@"EEEE MMMM d"]; NSString *formattedDateStr = (NSString *)[outputFormatter stringFromDate:date]; [editedObject setValue:(NSDate *)formattedDateStr forKey:editedFieldKey]; } </code></pre> <p>And then for whatever reason, the date just wont save in the app, and the compiler throws this error:</p> <p>The Debugger has exited with status 0. [Session started at 2009-12-02 09:51:26 -0700.] 2009-12-02 09:51:47.342 CoreDataBooks[17981:20b] <strong>* -[__NSCFDate length]: unrecognized selector sent to instance 0x3e79850 2009-12-02 09:51:47.343 CoreDataBooks[17981:20b] *</strong> Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSCFDate length]: unrecognized selector sent to instance 0x3e79850'</p> <p>Probably just a quick fix, I am hoping I was at least in the right hemisphere as far as the code goes, thanks again for any help or insight you have time to offer.</p> http://stackoverflow.com/questions/1834666/in-which-header-file-c-stl-hash-function-object-is-declared 0 In which header file c++ STL hash function object is declared? raj_arni 2009-12-02T17:54:39Z 2009-12-02T18:09:42Z <p>If I want to use the hash function object provided in STL, which header file I should include on Linux? e.g. hash Hf;</p> http://stackoverflow.com/questions/1833864/repeating-the-header-of-a-datalist 0 Repeating the Header of a DataList Matt Grande 2009-12-02T16:01:27Z 2009-12-02T17:27:12Z <p>I'm using an <code>asp:DataList</code>. I have the <code>HeaderTemplate</code> and the <code>ItemTemplate</code>, and those both work fine. However, I'd like to be able to repeat the Header above each Item, rather than just once at the top.</p> <ol> <li>Is this possible? Would I be better off using a different control?</li> <li>Can I make this configurable (ie, can it be turned on &amp; off in the code behind)?</li> </ol> <p>(Using C# 2.0)</p> http://stackoverflow.com/questions/1825877/questions-about-the-foundation-and-ns-library 0 Questions About The Foundation And NS Library Nathan Campos 2009-12-01T12:23:59Z 2009-12-01T13:57:57Z <p>Hello,<br /> I'm a Objective-C learner and I don't have a Mac, then I need to use my Linux with GNUStep, but if I develop my own program on it, the end-user will need to have GNUStep(like .Net) installed and then I started thinking how can I solve this, then I had an idea: "Create this from scratch!", but now to do this I need to know: What are the most important things in NS and Foundation headers? Thanks.</p> http://stackoverflow.com/questions/1826044/secure-email-form-header-injection-query 1 secure email form, header injection query Met 2009-12-01T12:58:06Z 2009-12-01T13:05:48Z <p>I'm using the following to clean up input from my contact form:</p> <pre><code>&lt;?php $name = strip_tags(stripslashes($_POST['name'])); //this is repeated for several other fields, then: if(isInjected($name)) { die(); } /* see isInjected function below */ // send the mail ?&gt; </code></pre> <p>I'm using this function:</p> <pre><code>&lt;?php /* function from http://phpsense.com/php/php-mail.html */ function isInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)' ); $inject = join('|', $injections); $inject = "/$inject/i"; if(preg_match($inject,$str)) { return true; } else { return false; } } ?&gt; </code></pre> <p>Is this sufficient to clean up my contact form?</p> <p>thanks.</p> http://stackoverflow.com/questions/1822947/objective-c-printing-how-to-set-header-content 0 Objective C Printing: How to set header content? Michael 2009-11-30T22:43:45Z 2009-11-30T23:38:06Z <p>Hi there,</p> <p>I want to print a specific NSView. When I do this, I wish to add content to the header of the print page. </p> <p>e.g. If the NSView contains a picture of a cat, when I press print, print preview shows up with the picture of the cat. I want the print out to be a picture of a cat, with the caption: "Cat" in the header, which I do not want visible on the original NSView.</p> <p>Also, if this is possible, is it also possible to add images too?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1816957/c-how-can-i-create-a-header-in-a-table-for-each-new-page-with-word-interop 0 C#: How can I create a header in a table for each new page with Word interop? Partial 2009-11-29T22:08:30Z 2009-11-29T23:23:16Z <p>I am trying to create a table with a header. I want this header to be repeated for each new page that the table takes. How can I do this in C# with Word 2007 Interop?</p> http://stackoverflow.com/questions/1809679/difference-between-implementing-a-class-inside-a-h-file-or-in-a-cpp-file 2 Difference between implementing a class inside a .h file or in a .cpp file Jack 2009-11-27T16:36:51Z 2009-11-27T17:07:09Z <p>Hello, I was wondering which are the differences between declaring and implementing a class solely in a header file, compared with normal approach in which you protype class in the header and implement in effective .cpp file.</p> <p>To explain better what I'm talking about I mean differences between normal approach:</p> <pre><code>// File class.h class MyClass { private: //attributes public: void method1(...); void method2(...); ... } //file class.cpp #include class.h void MyClass::method1(...) { //implementation } void MyClass::method2(...) { //implementation } </code></pre> <p>and a <em>just-header</em> approach:</p> <pre><code>// File class.h class MyClass { private: //attributes public: void method1(...) { //implementation } void method2(...) { //implementation } ... } </code></pre> <p>I can get the main difference: in the second case the code is included in every other file that needs it generating more instances of the same implementations, so an implicit redundancy; while in the first case code is compiled by itself and then every call referred to object of <code>MyClass</code> are linked to the implementation in <code>class.cpp</code>.</p> <p>But are there other differences? Is it more convenient to use an approach instead of another depending on the situation? I've also read somewhere that defining the body of a method directly into a header file is an implicit request to the compiler to inline that method, is it true?</p> http://stackoverflow.com/questions/1803983/delay-inbetween-two-simultaneos-php-file-downloads-from-the-same-script 0 Delay inbetween two simultaneos php file downloads from the same script giorgio 2009-11-26T14:28:12Z 2009-11-26T14:40:22Z <p>Hi, I have a strange problem here: If I try to download more than one file with the same download script (I've tried 5 different scripts found on php.net), the first goes well but the second has a delay of about 60 seconds from the time of its request. If I cancel the first download, then the second starts suddenly. I've tested direct file download from apache and everything is ok. This is the last script I've tried:</p> <pre><code>&lt;?php $filename= $_GET['file']; header("Content-Length: " . filesize($filename)); header('Content-Type: application/zip'); header('Content-Disposition: attachment; filename=writeToFile.zip'); $file_contents = file_get_contents($filename); print($file_contents); ?&gt; </code></pre> http://stackoverflow.com/questions/1793482/php-error-cannot-modify-header-information-headers-already-sent 0 PHP error: Cannot modify header information – headers already sent Marcus 2009-11-24T22:47:32Z 2009-11-24T23:56:54Z <p>Hello. So I have this output on my page.. not understanding why I have it popping up. I'm new to php though, so maybe it's something easy to fix</p> <p>-I have a header.php file, which includes all important info, as well has the banner of the page. This header.php is included on every page.</p> <p>-I have it checking the session value to make sure user is allowed to be at a certain page. If user is not allowed to be there, I kick them back to login page</p> <p>This is where the error comes up though. This is what I have:</p> <pre><code>include_once ("header.php"); if ($_SESSION['uid']!='programmer') { header('Location: index.php'); echo 'you cannot be here'; exit; } </code></pre> <p>The index that it is redirecting to also has the header. So is having these multiple header references giving me this error? I see no other way to do this, and it's driving me nuts!</p> http://stackoverflow.com/questions/1779283/download-and-thank-you-page-in-one-click 0 Download and "thank you" page in one click Arch25 2009-11-22T17:10:10Z 2009-11-22T19:10:05Z <p>I have a php-apache website on which I am trying to track download conversions using Google Analytics. I want my users to initiate the download and be redirected to a "thank you" page in one click. The way I'm envisioning this is:</p> <p>The user clicks one of several download buttons which sends them to a generic thankyou.php page, and passes a variable telling that page which file to give them. Thankyou.php contains a header which uses that variable to start a download dialogue.</p> <p>If there are better ways to do this, I am open to anything. To my bewilderment, I haven't found a good way to do this after several hours of poking around here and on Google.</p> <p>Many thanks in advance :-)</p> http://stackoverflow.com/questions/1775348/header-php-not-working 0 header php not working death the kid 2009-11-21T12:25:50Z 2009-11-21T13:30:24Z <p>well am trying to use the header to send information, but my html is already outputting information, I tried to fix the problem by using the ob_start() function to no avail </p> <pre><code> ob_start(); require('RegisterPage.php'); if(isset($_POST['register'])) { if(register($errormsg,$regnumber)) { $to = $_POST['email']; $subject = "Registration"; $txt = "You need to return to the Classic Records homepage and enter the number given in order to finish your registration ".$regnumber.""; $headers = "From: registration@greenwichtutoring.com"; mail($to,$subject,$txt,$headers); header('Location:emailNotification.html'); } else $error=$errormsg; } ob_end_flush(); </code></pre> http://stackoverflow.com/questions/1773386/how-to-suppress-remove-php-session-cookie 0 How to suppress/remove PHP session cookie iBobo 2009-11-20T21:34:46Z 2009-11-21T00:06:13Z <p>I need to suppress an already set session cookie header, but I cannot find any way to do this.</p> <p><strike>Why?<br> I need to make an image, sent by a PHP script, cacheable by the end user; this image is used to track if a newsletter has been read by the receiver, so if the image is requested I know the newsletter has been read. I only need to know when the newsletter gets opened for the first time, the subsequent requests can be ignored. The problem is that, even if I properly set the Expire and Cache-Control headers, the image is requested every time the user opens the newsletter--only that image used for the tracking--basically because it's not cached by the user. I used this <a href="http://www.ircache.net/cgi-bin/cacheability.py" rel="nofollow">tool</a> to understand why the URL is not cacheable, and it says because of the cookie sent.</p> <p>What I want to avoid is the user seeing a delay on the load of the tracking image.</strike></p> <p>So I have a <code>session_start()</code> in my website init function, that I don't want to remove, because the website is big and complicated, and making some radical change like starting the session only if needed (one of the solutions I envisioned) is not desirable. Calling <code>session_start()</code> sets the <code>Set-Cookie:</code> header with the <code>PHPSESSID</code> cookie, and I need to remove it. Reading from the <code>header()</code> page on php.net I tried setting it with an empty value like this</p> <pre><code>header('Set-Cookie:'); header('Set-Cookie:', true); header('Set-Cookie: '); header('Set-Cookie: ', true); </code></pre> <p>before and after a call to <code>session_write_close()</code>, but all I obtained is that the user receives a <code>Set-Cookie:</code> header, without any value, exactly as written in the <code>header</code> function argument.</p> <p>I must say I'm still using PHP 5.2, so I cannot use the <code>header_remove()</code> function I see in the manual, and lighttpd 1.4.24.</p> <p><strong>EDIT:</strong> so, it seems the tool I used to check my headers is not that good. I looked at the headers with <code>curl --head</code> and saw the headers below.</p> <pre><code>HTTP/1.1 200 OK X-Powered-By: PHP/5.2.9 Set-Cookie: PHPSESSID=qn3ms55nvst2717e7b73qqu445; path=/ Last-Modified: Sun, 29 Mar 2009 21:53:36 GMT ETag: "cb1dffff8c10db7b0a88794b1453cab8" Expires: Sun, 20 Dec 2009 23:28:07 GMT Cache-Control: private, max-age=2592000 Pragma: no-cache Content-Type: image/png Content-Length: 1322 Date: Fri, 20 Nov 2009 23:28:07 GMT Server: lighttpd/1.4.24 </code></pre> <p>As you see it is set a <code>Pragma: no-cache</code>. The tool I used said that the <code>Pragma</code> header is not used, but it was wrong. I tried setting <code>Pragma: cache</code>, and it made the mail client cache the image.</p> <p>I made another discovery, maybe the impossibility of unsetting the <code>Set-Cookie</code> header is because of lighttpd, since I cannot remove the <code>Pragma</code> header using <code>header('Pragma:')</code>. Looking forward to PHP 5.3. Can someone using Apache confirm that the above <code>header</code> call removes the <code>Pragma</code> header?</p> <p>Thanks txyoji for the enlightening comment :-)</p> <p>At this point it seems this question is here only to confirm lighttpd cannot remove headers by setting an header without value.</p> http://stackoverflow.com/questions/1768808/infragistics-ultra-webgrid-how-to-get-references-to-header-rows-in-a-two-level 0 infragistics ultra webgrid- how to get references to header rows in a two level ultra webgrid Rishi Poptani 2009-11-20T07:00:13Z 2009-11-20T07:00:13Z <p>I am using the Infragistics' Ultra webgrid. What i am trying to do is this: my grid has two levels. i have a checkbox in the header of each level,as well as on every row of the grid(using cell and header templates). when i check the checkbox located in the header of the second level, all the rows below the header must get checked i.e. the checkboxes of the rows below the header should get checked. Please advise. Thanks</p> http://stackoverflow.com/questions/1766474/should-javascript-code-always-be-loaded-in-the-head-of-an-html-document 1 Should javascript code always be loaded in the head of an html document? amvx 2009-11-19T20:57:37Z 2009-11-19T22:48:02Z <p>Is there a blanket rule in terms of how javascript should be loaded. I'm seeing people saying that it should go on the end of the page now. </p> <p>Thoughts?</p> http://stackoverflow.com/questions/1765448/jquery-ui-accordion-styling-active-header 0 [jQuery UI - Accordion] Styling active header? RC 2009-11-19T18:21:16Z 2009-11-19T18:21:16Z <p>Hi,</p> <p>Simple issue: I am using Accordion without any UI themes (just barebones, using my own CSS).</p> <p>So far, so good, except that I cannot figure out how to set an "active" style for the currently selected header.</p> <p>The jQuery code:</p> <pre><code>$("#menu").accordion({ event:"mouseover",header:"a.top" }); </code></pre> <p>The HTML code:</p> <pre><code>&lt;a href="#" class="top"&gt;XXX1&lt;/a&gt; &lt;div class="sub"&gt; &lt;a href="#"&gt;Subheading 1&lt;/a&gt; &lt;a href="#"&gt;Subheading 2&lt;/a&gt; &lt;a href="#"&gt;Subheading 3&lt;/a&gt; &lt;/div&gt; &lt;a href="#" class="top"&gt;XXX2&lt;/a&gt; &lt;div class="sub"&gt; &lt;a href="#"&gt;Subheading 1&lt;/a&gt; &lt;a href="#"&gt;Subheading 2&lt;/a&gt; &lt;a href="#"&gt;Subheading 3&lt;/a&gt; &lt;/div&gt; </code></pre> <p>This works great, except that I cannot find a way to define the styles for the active header without using ThemeRoller.</p> <p>Manually setting the following styles in my CSS has no effect:</p> <pre><code>.ui-state-active .ui-widget-content .ui-state-active .ui-state-active a .ui-state-active a:link .ui-state-active a:visited </code></pre> <p>Assistance, please?</p> http://stackoverflow.com/questions/1756984/datagrid-stop-event-headerrelease-when-push-headerrenderer-checkbox 0 Datagrid - Stop event HEADER_RELEASE when push headerRenderer checkbox Tony 2009-11-18T15:55:33Z 2009-11-19T17:50:50Z <p>Hi, i have this code in flex:</p> <pre><code>&lt;mx:Application ... &gt; .... &lt;mx:DataGrid id="filtros" styleName="grid" rowCount="10" dataProvider="{_larcFiltros}" allowMultipleSelection="true" &gt; &lt;mx:columns&gt; &lt;mx:DataGridColumn dataField="titulo" textAlign="left"&gt; &lt;mx:headerRenderer&gt; &lt;mx:Component&gt; &lt;mx:HBox width="100%" horizontalAlign="left" &gt; &lt;mx:CheckBox click="outerDocument._mCheckAll(0)" /&gt; &lt;mx:Label text="Título" /&gt; &lt;/mx:HBox&gt; &lt;/mx:Component&gt; &lt;/mx:headerRenderer&gt; &lt;/mx:DataGridColumn&gt; &lt;mx:DataGridColumn headerText="Descripción" dataField="resumen"/&gt; ... &lt;/mx:Application&gt; </code></pre> <p>When i click in the checkbox i want the column to sort, but when i click out of checkbox, in the column i wan to sort. How to know when i click in the checkbox or the column?</p> <p>Any idea?</p> <p>thanks a lot!</p> http://stackoverflow.com/questions/1752503/why-is-my-page-still-executing 1 Why is my page still executing? Website owner 2009-11-17T23:06:14Z 2009-11-17T23:29:08Z <p>I have a form that posts to a processing script which checks for errors in the post. Depending on the processing itheader redirects to another location. Thus appeared to work nut I have just noticed that is still executing stuff after the header.</p> <p>What us going on?</p> http://stackoverflow.com/questions/1751253/is-there-any-way-to-read-the-header-codes-without-downloading-the-file-at-all 0 Is there any way to read the header codes without downloading the file at all? alex 2009-11-17T19:41:24Z 2009-11-17T22:17:30Z <pre><code> import httplib conn = httplib.HTTPConnection(head) conn.request("HEAD",tail) res = conn.getresponse() print res.status </code></pre> <p>I am currently using this to get the HTTP header code of a file. However, it seems like this code DOWNLOADS the file, and then gets the code. </p> <p>However, some files are actually video files...and it would be inefficient for my program to download them.</p> <p><strong>Is there any way to read the header codes without downloading the file at all?</strong></p> http://stackoverflow.com/questions/1504620/datagridview-override-top-left-header-cell-click-select-all 0 DataGridView override top,left header cell click (select all) Greg Kendall 2009-10-01T15:25:18Z 2009-11-16T19:36:10Z <p>I want to override the behavior of a mouse click in the DataGridView header/column cell (top, left cell). That cell causes all rows to be selected. Instead, I want to stop it from selecting all rows. I see an event for RowHeaderSelect and ColumnHeaderSelect but not one for that top, left header cell.</p> <p>Any ideas? Am I just being blind?</p> http://stackoverflow.com/questions/570653/need-the-excel-header-on-each-print-page-to-be-the-first-row-of-the-table 1 Need The Excel Header On Each Print Page To Be The First Row Of The Table Dave 2009-02-20T18:04:47Z 2009-11-15T08:38:02Z <p>I need the First Row in an Excel Spreadsheet to Print as the header on all pages.</p> http://stackoverflow.com/questions/1726797/better-way-to-share-header-file-between-separate-vc-project 0 Better way to share header file between separate vc project? Benny 2009-11-13T02:40:53Z 2009-11-14T16:58:19Z <p>How would you organize your vc projects source code to share the same header file?</p> <ol> <li>put the header in a common folder, and have every vc projects include it.</li> <li>put the header in a vc project, and have the other projects include it as a link.</li> <li>copy the header file into every vc project </li> </ol> <p>any better solution?</p> http://stackoverflow.com/questions/1708238/how-to-make-only-specific-text-clickable-on-accordion-header-jquery 1 How to make only specific text clickable on accordion header - jquery? zeina 2009-11-10T14:09:45Z 2009-11-14T10:01:50Z <p>I added delete and edit link to the accordion header, yet those links are not working since every time i click on them the accordion open. And advice on how can I do it? Note that I'm doing nested accordion. this is how i defined it on js:</p> <pre><code>$("#acc2").accordion({ alwaysOpen: false,active: false,autoheight: false, header: 'h3.ui-accordion2-header',clearStyle: true, event: 'click' }); </code></pre> <p>and on html I have it like this:</p> <pre><code>&lt;div class="ui-accordion2-group"&gt; &lt;h3 class="ui-accordion2-header"&gt; &lt;table border=0 width=100% class= 'DarkGray12' &gt; &lt;tr&gt; &lt;td&gt; &lt;a href="javascript:toggel_new_activity('1');"&gt;Section Title&lt;/a&gt; &lt;/td&gt; &lt;td align='right'&gt; &lt;table border=0&gt; &lt;tr&gt; &lt;td&gt; &lt;a href="javascript:toggel_new_activity('1');"&gt;New Activity&lt;/a&gt; &lt;/td&gt; &lt;td&gt; &lt;a href='#'&gt;Edit&lt;/a&gt; &lt;/td&gt; &lt;td&gt; &lt;a href='#'&gt;Delete&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/h3&gt; &lt;/div&gt; </code></pre>