active questions tagged inline - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:48:15Z http://stackoverflow.com/feeds/tag/inline http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824267/limit-foreign-key-choices-in-select-in-an-inline-form-in-admin 1 Limit foreign key choices in select in an inline form in admin mightyhal 2009-12-01T06:01:18Z 2009-12-02T02:30:40Z <p>Edited :-) Hopefully a bit clearer now.</p> <p>The logic is of the model is: </p> <ul> <li><p>A <code>Building</code> has many <code>Rooms</code></p></li> <li><p>A <code>Room</code> may be inside another <code>Room</code> (a closet, for instance--ForeignKey on 'self') </p></li> <li>A <code>Room</code> can only in inside of another <code>Room</code> in the same building (this is the tricky part) </li> </ul> <p>Here's the code I have: </p> <pre><code>#spaces/models.py from django.db import models class Building(models.Model): name=models.CharField(max_length=32) def __unicode__(self): return self.name class Room(models.Model): number=models.CharField(max_length=8) building=models.ForeignKey(Building) inside_room=models.ForeignKey('self',blank=True,null=True) def __unicode__(self): return self.number </code></pre> <p>and:</p> <pre><code>#spaces/admin.py from ex.spaces.models import Building, Room from django.contrib import admin class RoomAdmin(admin.ModelAdmin): pass class RoomInline(admin.TabularInline): model = Room extra = 2 class BuildingAdmin(admin.ModelAdmin): inlines=[RoomInline] admin.site.register(Building, BuildingAdmin) admin.site.register(Room) </code></pre> <p>The inline will display only rooms in the current building (which is what I want). The problem, though, is that for the <code>inside_room</code> drop down, it displays all of the rooms in the Rooms table (including those in other buildings).</p> <p>In the inline of <code>rooms</code>, I need to limit the <code>inside_room</code> choices to only <code>rooms</code> which are in the current <code>building</code> being displayed by the main form. </p> <p>I can't figure out a way to do it with either a <code>limit_choices_to</code> in the model, nor can I figure out how exactly to override the admin's inline formset properly (I feel like I should be somehow create a custom inline form, pass the building_id of the main form to the custom inline, then limit the queryset for the field's choices based on that--but I just can't wrap my head around how to do it).</p> <p>Maybe this is too complex for the admin site, but it seems like something that would be generally useful... </p> <p>Thanks again for your help!</p> http://stackoverflow.com/questions/1821661/scaling-multiple-images-to-fit-inline-in-a-div 0 Scaling multiple images to fit inline in a div? sickmate 2009-11-30T18:50:51Z 2009-11-30T20:19:20Z <p>Is there an efficient way to scale a number of images so that they can fit inline inside a fixed-size div?</p> <p>I'm assuming it would be possible to do by using javascript to calculate the div width, divide it by the number of images (excluding padding) and then resizing the images equally to keep their aspect ratio but I'm hoping there is a better way to do it.</p> http://stackoverflow.com/questions/791070/what-tools-to-automatically-inline-css-style-to-create-email-html-code 4 What tools to automatically inline CSS style to create email HTML code ? Pierre-Jean Coudert 2009-04-26T15:40:57Z 2009-11-30T14:36:50Z <p>When you take a look at <a href="http://www.campaignmonitor.com/css/" rel="nofollow">http://www.campaignmonitor.com/css/</a> you learn that you need to embed inline styles in your HTML, in order for your email to be read in any mail client.</p> <p>Do you know any tools or script to automatically convert an HTML file with a declared in to an HTML file with only inline CCS style attributes ?</p> <p><strong>Edit</strong>: Any Javascript solution ( ie: <a href="http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/" rel="nofollow">http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/</a> ) ? With jQuery ?</p> http://stackoverflow.com/questions/1817950/can-inline-function-bodies-in-c-reference-entities-declared-later 0 Can inline function bodies in C reference entities declared later Lothar 2009-11-30T05:11:31Z 2009-11-30T05:18:52Z <p>Lets say i have two inline functions in my header file:</p> <pre><code>inline int foo() { return bar()+2; } inline int bar() { return 3; } </code></pre> <p>can i assume that a C99 compiler will inline "foo" even if 'bar' is declared later? Assuming that no other internal rule like function body to large is triggered.</p> <p>Are implementations of c compilers doing this (popular ones say Intel-C/Sun Studio/MSVC and gcc) even if C99 leave this as an option?</p> http://stackoverflow.com/questions/1811654/delphi-2010-inlining-useless 5 Delphi 2010 inlining useless?! TallGuy 2009-11-28T05:15:32Z 2009-11-28T20:51:54Z <p>What is the go with inlining functions or procedures in Delphi (specifically v2010 here, but I had the same issue with Turbo Delphi)?</p> <p>There is some discalimer in the help about it may not always inline a function because of "certain criteria" whatever that means.</p> <p>But I have found that generally inlining functions (even very simple ones that have 3 or 4 lines of code) slows down code rather than speeds it up.</p> <p>A great idea would be a compiler option to "inline everything". I don't care if my exe grows by 50% or so to get it working faster.</p> <p>Is there a way I can force Delphi to really inline code even if it is not decided to be inlinded by the compiler? That would really help. Otherwise you need to do "manual inlining" of replicating the procedure code throughout multiple areas of your code with remarks like "//inlining failed here, so if you change the next 5 lines, change them in the other 8 duplicate spots this code exists"</p> <p>Any tips here?</p> http://stackoverflow.com/questions/1808832/inline-css-javascript-into-a-html-file 2 Inline CSS/Javascript into a HTML file Sec 2009-11-27T13:39:10Z 2009-11-27T20:27:18Z <p>I am looking for a simple commandline script/program to automatically "inline" all external css and javascript references for a html file. I basically want to create a single self-contained html file suitable for sending via E-Mail. An additional bonus would be if it could also inline images as data: UIRs, but that part is not so important.</p> http://stackoverflow.com/questions/1759300/c-when-should-i-write-the-keyword-inline-for-a-function-method 7 C++: When should I write the keyword 'inline' for a function/method? Partial 2009-11-18T21:46:00Z 2009-11-24T05:04:32Z <h1>Main Question</h1> <p>When should I write the keyword 'inline' for a function/method in C++?</p> <p><hr></p> <h2>Edit:</h2> <p>Questions added by seeing some answers...</p> <ul> <li><p>When should I <strong>not</strong> write the keyword 'inline' for a function/method in C++?</p></li> <li><p>When will the the compiler not know when to make a function/method 'inline'?</p></li> <li><p>Does it matter if an application is <strong>multithreaded</strong> when one writes 'inline' for a function/method?</p></li> </ul> http://stackoverflow.com/questions/1767475/asp-net-button-use-javascript-return-function 0 asp.net button use javascript return function TenaciousImpy 2009-11-19T23:57:23Z 2009-11-20T06:41:57Z <p>Hi, I have an asp:button control and am using the "CommandName" and "CommandArgument" parameters in the .aspx file. The CommandName is found with &lt;%# Eval("Name") %>, but the CommandArgument has to be found via a javascript function. However, I'm not quite sure how to do this inline. The function returns a number (integer), which is to be used as the value of the CommandArgument. Is it possible to do this? Thanks</p> <p><strong>EDITED TO ADD CODE</strong> I've added an example code (don't have access to the real code atm). However, basically, the CommandArgument should be the value returned by the function CalculateLength(). </p> <pre><code>function CalculateLength(a,b) { return a*b; } &lt;asp:Button ID="btnUpdate" runat="server" Text="Update" CommandName=&lt;%# Eval("Name") %&gt; CommandArgument= ??? //Should be result of CalculateLength(a,b). </code></pre> http://stackoverflow.com/questions/1750526/drawing-empty-inline-boxes-in-css 1 Drawing empty inline boxes in CSS? Xepoch 2009-11-17T17:40:54Z 2009-11-18T10:16:59Z <p>I'm sure this is very simple, but I'm trying to draw a set of small, empty, <em>inline</em> boxes in HTML like the following:</p> <pre><code>&lt;span style="border:1px solid black;height=10px;width=17px"&gt;&lt;/span&gt; </code></pre> <p>Earlier, did simple .gif images earlier but looked fuzzy as the browsers' displays are scaled up or down.</p> <p><code>&lt;span&gt;</code> however being an inline element does not honor the <code>height</code> and <code>width</code> properties. And of course using <code>&lt;div style="display:inline;...</code> exhibits the same behavior in that it then won't honor those properties.</p> <p>Can you please suggest a CSS'y way?</p> <p><hr> <strong>Update</strong> Assume the following, if I float it it will bond to the right or left of the text and I need it inlined to the text based upon the browser's width, &amp;c</p> <pre><code>&lt;p&gt;Lorem ipsum dolor sit amet, &lt;INSERT BOX HERE&gt; consectetur adipisicing elit, &lt;INSERT OTHER BOX HERE&gt; sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation&lt;/p&gt; </code></pre> http://stackoverflow.com/questions/1748826/javascript-inline-events-or-adding-events-afterwards 0 Javascript Inline Events or Adding Events Afterwards Kaitsuli 2009-11-17T13:21:36Z 2009-11-17T14:05:47Z <p>Hello,</p> <p>I have a question, which I can't seem to decide on my own so I'll ask here. The question is simple: whether use inline Javascript events or adding them afterward. The theory in the background isn't that simple though:</p> <p>I have a JS object that returns HTML. Whenever you create this object, the returned HTML will be used for another object's HTML. Therefore, adding events is not straight-forward. See:</p> <pre><code>secret.object = function() { this.init = function() { var html = '&lt;div&gt;and lots of other HTML content&lt;/div&gt;'; return html; }; } </code></pre> <p>This is a sample object that is created within this code:</p> <pre><code> for ( var i = 0; i &lt; countObjects; i++) { var obj = arguments[0].content[i]; generatedContent += spawnSecret(); /* The spawnSecret() is a method that initializes the object, and calls its init() method that returns the HTML. } </code></pre> <p>and then later on I create a new object whose property "content" will be set to "generatedContent". It need to add the events within the secret object I have, nowhere else. And since my system is built like this, I see only two ways around this: use inline events or build HTML using method calling instead of returning.</p> <p>Hopefully this wasn't too hard to understand..</p> http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline 1 Django Admin: OneToOne Relation as an Inline? Jim Robert 2009-11-16T19:10:26Z 2009-11-16T20:30:09Z <p>I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base <code>Product</code> model, and I'd like to edit it all on one page.</p> <p>It is possible to have a OneToOne relation as an Inline? If not, what is the best way to add a few fields to a given page of my admin that will eventually be saved into the OneToOne relation?</p> <p>for example:</p> <pre><code>class Product(models.Model): name = models.CharField(max_length=100) ... class MyProduct(models.Model): product = models.OneToOne(Product) ... </code></pre> <p>I tried this for my admin but it does not work, and seems to expect a Foreign Key:</p> <pre><code>class ProductInline(admin.StackedInline): model = Product fields = ('name',) class MyProductAdmin(admin.ModelAdmin): inlines = (AlbumProductInline,) admin.site.register(MyProduct, MyProductAdmin) </code></pre> <p>Which throws this error: <code>&lt;class 'satchmo.product.models.Product'&gt; has no ForeignKey to &lt;class 'my_app.models.MyProduct'&gt;</code></p> <p>Is the only way to do this a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#form" rel="nofollow">Custom Form</a>?</p> <p><strong>edit:</strong> Just tried the following code to add the fields directly... also does not work:</p> <pre><code>class AlbumAdmin(admin.ModelAdmin): fields = ('product__name',) </code></pre> http://stackoverflow.com/questions/1742525/is-there-a-way-to-set-min-line-height-on-inline-element-in-css 0 Is there a way to set min-line-height on inline element in CSS? saji 2009-11-16T14:32:37Z 2009-11-16T14:48:43Z <p>I have some inline links with icon showing on the left (padding + bacground), but when the font is too small, the image doesn't fit in line height and gets cropped on top and bottom. Is there any way to prevent it from happening, without use of javascript? I don't want to set font size in px..</p> <p>Some min-line-height set to non-relative value (image's height) would be ideal.</p> http://stackoverflow.com/questions/1742084/jquery-show-hide-values-for-css-display-affecting-layout 1 JQuery Show/Hide - Values for Css Display Affecting Layout Andy McCluggage 2009-11-16T13:05:45Z 2009-11-16T13:50:53Z <p>JQuery uses the Css <code>Display</code> value under the hood of the simple show() and hide() functions. The following Html includes three buttons each wrapped in a span tag, and all three span tags placed in a parent div container. On page load the span tags are hidden using JQuery hide() and at some point later on they are displayed using the show() function. The Html is now in the following state with the span tag having received the style value <code>display:block.</code></p> <pre><code>&lt;div style="text-align:right; width:100%;"&gt; &lt;span style="display:block"&gt; &lt;input type="button" value="Button1" /&gt; &lt;/span&gt; &lt;span style="display:block"&gt; &lt;input type="button" value="Button2" /&gt; &lt;/span&gt; &lt;span style="display:block"&gt; &lt;input type="button" value="Button3" /&gt; &lt;/span&gt; &lt;/div&gt; </code></pre> <p>In Firefox (3.5) the span elements appear stacked vertically on top of each other, whereas in IE they appear inline. I would have expected the latter in both browsers because I thought that the default layout for span tags was inline.</p> <p>If I manually change the style from <code>display:block.</code> to <code>display:inline.</code> it looks correct in Firefox. Essentially, when showing an element JQuery is using a value for <code>display</code> that is not always valid. Adding <code>display:block.</code> is enough to show the element but not enough to show it with the inline layout I require.</p> <p>So, to my questions...</p> <ol> <li>Is this a known issue with JQuery? I am using JQuery 1.2.6.</li> <li>Has anyone experienced this problem before, and how did you get around it?</li> </ol> http://stackoverflow.com/questions/1733992/how-to-get-the-css-with-in-inline-styles-using-jquery 0 How to get the css with in inline styles using jquery Prasad 2009-11-14T11:28:29Z 2009-11-14T13:17:31Z <p>I am loading the styles dynamically from the database in my asp.net mvc (C#) application.</p> <p>I am trying to change some of the properties like (background, font color, font size,...) of the loaded inline style. I am using jquery.rule to do this.</p> <p>I need to update the complete inline style including the changes, back to the database using jquery.</p> <p>The inline style inside the head looks like:</p> <pre><code>&lt;style type="text/css"&gt; &lt;! -- body { background: #fff; margin: 0px; padding: 0px; font: normal 12px Tahoma, Verdana, Arial; color: #636363; } a { color: #d0d0d0; text-decoration: none; } #header { padding-left: 35px; height: 60px; vertical-align: middle; padding-top: 25px; } -- &gt;&lt;/style&gt; </code></pre> <p>I need to get updated inline style. How to do it?</p> http://stackoverflow.com/questions/934529/c-inline-functions-using-gcc-why-the-call 3 C++ inline functions using GCC - why the CALL? Richard J. Terrell 2009-06-01T11:56:14Z 2009-11-13T09:53:30Z <p>I have been testing inline function calls in C++.</p> <pre><code>Thread model: win32 gcc version 4.3.3 (4.3.3-tdm-1 mingw32) </code></pre> <p>Stroustrup in The C++ Programming language wirtes:</p> <blockquote> <p>The inline specifier is a hint to the compiler that it should attempt to generate code [...] inline rather than laying down the code for the function once and then calling through the usual function call mechanism.</p> </blockquote> <p>However, I have found out that the generated code is simply not inline. There is a <em>CALL</em> instrction for the <strong>isquare</strong> function.</p> <p><img src="http://i42.tinypic.com/8ys3f4.jpg" alt="alt text" /></p> <p><strong>Why is this happening? How can I use inline functions then?</strong></p> <p><strong>EDIT:</strong> The command line options used:</p> <pre><code>**** Build of configuration Debug for project InlineCpp **** **** Internal Builder is used for build **** g++ -O0 -g3 -Wall -c -fmessage-length=0 -osrc\InlineCpp.o ..\src\InlineCpp.cpp g++ -oInlineCpp.exe src\InlineCpp.o </code></pre> http://stackoverflow.com/questions/1699138/how-to-fit-two-inline-elements-to-the-body-width 0 How to fit two inline elements to the body width? Alqin 2009-11-09T04:44:41Z 2009-11-11T09:00:17Z <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Title&lt;/title&gt; &lt;style type="text/css"&gt; #container { position: relative; } #line { border-bottom: thin solid gray; display:inline-block; position:relative; bottom: 1ex; width:90%; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;span id="title"&gt;Title&lt;/span&gt; &lt;span id="line"&gt;&lt;/span&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>How do i make that the width of span "line" to be equal with the width of "container" minus width of the span "title"?</p> <p><strong>Edit</strong></p> <p>The width of the "title" to be decided by the text inside the "title".</p> http://stackoverflow.com/questions/1685386/django-admin-how-to-dynamically-insert-values-into-the-add-inline-form 0 Django Admin: How to dynamically insert values into the add inline form orwellian 2009-11-06T04:21:37Z 2009-11-10T03:35:28Z <p>Let's say I have this model:</p> <pre><code>class Foo(models.Model): bar = models.ForeignKey(Bar) currency = models.ForeignKey(Currency) # currency is just an example is_active = models.BooleanField() </code></pre> <p>Now suppose Foo is an Inline of Bar. And I would always want to indicate a value on each currency? If I could replace those currency drop down menus with a widget that just returns the name as text with a hidden field. So for example, on an add page, instead of having the inline show this:</p> <pre><code> - currency drop down menu is_active checkbox - currency drop down menu is_active checkbox - currency drop down menu is_active checkbox </code></pre> <p>have it show this:</p> <pre><code> - currency name 1 is_active checkbox - currency name 2 is_active checkbox - currency name 3 is_active checkbox - currency name 4 is_active checkbox - currency name 5 is_active checkbox </code></pre> <p>What would be the right approach to accomplish that? I assume I would have to override some form class method. Thanks.</p> http://stackoverflow.com/questions/1702365/problem-in-displaying-inline-attachment 0 Problem in displaying " inline attachment " Supriya 2009-11-09T17:05:40Z 2009-11-09T21:48:12Z <p>When I am checking the structure of an email containing inline image attachment for HTML stationery background.</p> <p>When I am checking the imap structure and the reference (</p> <p>Gmail, Yahoo and other smart email readers are converting the cid into some URL and showing those inline attachments as the stationery of HTML background.</p> http://stackoverflow.com/questions/1700934/final-methods-are-inlined 1 final methods are inlined? xdevel2000 2009-11-09T13:17:43Z 2009-11-09T20:38:00Z <p>Are Java final methods automatically inlined?</p> <p>Many books says yes many books says no!!!</p> http://stackoverflow.com/questions/1692301/mfmailcomposeviewcontroller-csv-attachment-not-being-attached-but-showing-inline 0 MFMailComposeViewController csv attachment not being attached, but showing inline instead Harris 2009-11-07T07:14:35Z 2009-11-07T07:14:35Z <p>Hello - I am having a problem with sending csv attachments via MFMailComposeViewController. Sometimes they come through just fine, but for other users they don't come through as attachments, but rather as text inline in the email (with &lt;br/&gt; instead of line returns.) It's very strange. Anybody know what I'm doing wrong? Here is a snippet of my code:</p> <pre><code>MFMailComposeViewController *mailComposeViewController = [[MFMailComposeViewController alloc] init]; mailComposeViewController.mailComposeDelegate = self; NSString *csv = @"foo,bar,blah,hello"; NSData *csvData = [csv dataUsingEncoding:NSUTF8StringEncoding]; [mailComposeViewController addAttachmentData:csvData mimeType:@"text/csv" fileName:@"testing.csv"]; [mailComposeViewController setSubject:@"testing sending csv attachment"]; [mailComposeViewController setMessageBody:@"csv file should be attached" isHTML:NO]; [self presentModalViewController:mailComposeViewController animated:YES]; </code></pre> http://stackoverflow.com/questions/1680026/plone-inlined-content-does-not-update-on-document-when-published 0 Plone - inlined content does not update on document when published Ruth 2009-11-05T11:41:34Z 2009-11-05T13:42:23Z <p>Hi all</p> <p>I have documents in my Plone CMS with content inlined from other objects. Once the document is published to my site the date and time it was last published (ie. last updated) is displayed at the bottom of the page template.</p> <p>The problem I'm having is that When I re-publish the object from which content is inlined, the changes made to the content displays fine on the document, but the last updated date and time stays the same.</p> <p>Obviously re-publishing the document itself will update last updated, but i'm wondering why last updated does not update itself automatically when the other object (where content is inlined from) is re-published.</p> <p>The documents also link to other objects, when these other objects are altered and re-published, the date and time automatically update, without having to re-publish the actual document.</p> <p>Any information or help in a workaround would be mush appreciated.</p> <p>Thanks in advance</p> <p>Ruth</p> http://stackoverflow.com/questions/1660825/how-do-i-add-and-remove-an-active-class-with-jquery 0 How do i add and remove an active class with jQuery? Chris 2009-11-02T11:46:47Z 2009-11-02T13:16:53Z <p>I have an unordered list.</p> <pre><code>&lt;style&gt; #button1 { position:relative; z-index: 3; } #button2 { position:relative; z-index: 2; } #button3 { position:relative; z-index: 1; } &lt;/style&gt; &lt;ul&gt; &lt;li id="button1"&gt;Button 1&lt;/li&gt; &lt;li id="button2"&gt;Button 2&lt;/li&gt; &lt;li id="button3"&gt;Button 3&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I am currently using css to give each id a different z-index so that one button is slightly on top of the next. What I want to do is to use jQuery to add a class that add's a much higher z-index to whatever button was clicked such as '999' to ensure that it will be on top of the other two buttons. I can't figure out how to add an active class to the currently clicked <code>&lt;li&gt;</code> while removing the active class from whatever button currently has it set. I don't know how to make jQuery figure out which of the other two <code>&lt;li&gt;</code>'s has the active class set before the new button is pushed. How would I go about doing that?</p> <p>Also I am not sure if adding a class will solve the problem since I am already setting the z-index by targeting the <code>&lt;li&gt;</code>'s id. Maybe I would need to affect the inline css for the currently pushed button so it overrides the id's css, and also have it check to see which of the other two has the inline css z-index set to '999' so it can remove their inline css and have a larger z-index than the other two buttons and appear on top?</p> http://stackoverflow.com/questions/1656010/c-inline-assembly-memory-copy 1 C inline assembly memory copy unknown (google) 2009-11-01T00:18:17Z 2009-11-02T05:13:03Z <p>I am trying to write some inline assembly into C. I have two arrays as input, what I need is to copy one element in array1 into array2, and the following is what I have at the moment:</p> <pre><code>asm ( "movl %0,%%eax;" "movl %1,%%ebx;" "movl (%%eax),%%ecx;" "movl %%ecx,(%ebx);" "xor %%ecx,%%ecx;" "movl 4(%%eax),%%ecx;" //do something on %ecx "movl %%ecx,4(%ebx);" //write second : :"a"(array1),"b"(array2) ); </code></pre> <p>However, I get a segmentation fault error.</p> <p>Can anyone help me please?</p> http://stackoverflow.com/questions/1640344/when-should-you-use-macros-instead-of-inline-functions 3 When should you use macros instead of inline functions? semaj 2009-10-28T21:48:25Z 2009-10-29T08:34:01Z <p>In a previous <a href="http://stackoverflow.com/questions/1638437/given-an-angle-and-length-how-do-i-calculate-the-coordinates">question</a> what I thought was a good answer was voted down for the suggested use of macros</p> <pre><code>#define radian2degree(a) (a * 57.295779513082) #define degree2radian(a) (a * 0.017453292519) </code></pre> <p>instead of inline functions. Please excuse the newbie question, but what is so evil about macros in this case?</p> http://stackoverflow.com/questions/1633461/jqgrid-editing-only-through-form-mode 0 jqGrid editing ONLY through form mode ombud 2009-10-27T20:28:28Z 2009-10-27T20:28:28Z <p>Hi</p> <p>In my grids on the page, all of them need to not only have inline edit disabled, but ALSO should be editable via the modal form ONLY.</p> <p>However, turning editable : false, while preventing in-line edits, also prevents editing via the form (no columns can be seen on the form, just the Submit and Cancel buttons)</p> <p>How can I effect this behavior? Or is it not possible with the current version (3.5.2)</p> <p>I also tried to enable editable (:true) (after having turned it off in the colModel declaration) within the beforeFormShow and onInitializeForm event handlers, but there are no columns displayed in either the edit or add forms.</p> <p>Thanks very much for any insight you provide...</p> <p>Here's what I'm doing -</p> <pre><code> var addprm = { width: 450, height: 200, top: 125, left: 50, beforeShowForm: function(formId) { id= jQuery('#list10').getGridParam('selrow'); alert('From AddPrm: formId=' + formId + " id=" + id); var ret = jQuery('#table').getRowData(id); jQuery('#list10').setColProp('tr_a_name',{editable:true}); jQuery('#list10').setColProp('tr_a_desc',{editable:true}); jQuery('#list10').setColProp('tr_a_comments',{editable:true}); }, reloadAfterSubmit:true, closeAfterAdd:true }; </code></pre> <p>And like wise for the editprm object, with the tr_ prefix and without (as in colModel)</p> http://stackoverflow.com/questions/1628189/static-inline-methods 1 Static inline methods? Polaris878 2009-10-27T00:54:26Z 2009-10-27T01:00:59Z <p>Okay,</p> <p>Here is what I'm trying to do... Right now it is compiling but failing at linking... LNK2001</p> <p>I want the methods static because there are no member variables, however I also want them inline for the speedups they provide. </p> <p>What is the best way to do this? Here is what I have in a nutshell:</p> <pre><code>/* foo.h */ class foo { static void bar(float* in); }; /* foo.cpp */ inline void foo::bar(float* in) { // some dark magic here } </code></pre> <p>I'm trying to do this because I want to be able to go:</p> <pre><code>foo::bar(myFloatPtr); </code></pre> <p>foo doesn't have any member variables... it doesn't make sense to.</p> http://stackoverflow.com/questions/1626248/does-gcc-inline-c-functions-without-the-inline-keyword 3 Does GCC inline C++ functions without the 'inline' keyword? Carl Seleborg 2009-10-26T17:49:07Z 2009-10-26T18:04:03Z <p>Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the <code>inline</code> keyword?</p> http://stackoverflow.com/questions/1621623/is-there-any-reason-c-does-not-support-manual-inline-methods-and-what-about-opt 2 Is there any reason C# does not support manual inline methods? And what about optional parameters? Itay 2009-10-25T18:21:45Z 2009-10-26T12:21:11Z <p>Is there any design reason for that(like the reason they gave up multi inheritance)?</p> <p>or it just wasn't important enough?</p> <p>and same question applies for optional parameters in methods... this was already in the first version of vb.net... so it surely no laziness that cause MS not to allow optional parameters, probably architecture decision.. and it seems they had change of heart about that, because C# 4 is going to include that.. </p> <p>Does anybody know what was the decision and why did they give it up?</p> <p><strong>EDIT:</strong></p> <p>Maybe you didn't fully understand me. I'm working lately on a calculation program (support numbers of any size, to the last digit), in which some methods are used literally millions of times per second.</p> <p>Say I have a method called Add(int num), and this method is used quiet a lot with 1 as parameter (<code>Add(1);</code>), I've found out it is faster to implement a special method especially for one. And I don't mean overloading - Writing a new method called AddOne, and literally copy the Add method into it, except that instead of using <code>num</code> I'm writing <code>1</code>. This might seems horribly weird to you, but it actually faster.</p> <p>(as much as ugly it is)</p> <p>That made me wonder why C# doesn't support manual inline which can be amazingly helpful here.</p> <p>thanks. (and why did you vote me down :S)</p> <p><strong>Edit 2:</strong></p> <p>I asked myself whether or not to add this. I'm very well familiar with the weirdness (and disadvantages) of choosing a platform such as dot net for such project, but I think dot net optimizations are more important than you think... especially features such as Any CPU etc.</p> http://stackoverflow.com/questions/1611593/is-it-okay-to-have-a-method-declared-an-inline-method-if-its-has-a-for-loop-in-c 1 Is it okay to have a method declared an inline method if its has a for loop in C++ abhijeet 2009-10-23T05:52:27Z 2009-10-23T09:46:47Z <p>I have a method like the one shown below. Will the for loop always make the compiler for go the "inline request" ?</p> <pre><code>inline void getImsiGsmMapFrmImsi ( const string&amp; imsiForUEDir, struct ImsiGsmMap&amp; imsiGsmMap ) { for (int i = 0 ; (unsigned)i &lt; imsiForUEDir.length() - 1 ; i++) { imsiGsmMap.value[i] = imsiForUEDir[i] - '0' ; } imsiGsmMap.length = imsiForUEDir.length() - 1 ; } </code></pre> http://stackoverflow.com/questions/1147097/zendmail-how-to-get-attachment-id 1 Zend_Mail: how to get attachment ID? axel.klein 2009-07-18T09:30:47Z 2009-10-21T19:34:46Z <p>Hi,</p> <p>I am using Zend to create emails. Now I will place an inline image in the HTML Part of the mail. So I am attaching the image with:</p> <pre> $imageContent = file_get_contents(APPLICATION_PATH.'../html/static/img/image.jpg'); $image = $mail->createAttachment($imageContent, 'image/jpeg', Zend_Mime::DISPOSITION_INLINE, Zend_Mime::ENCODING_BASE64, 'image.png'); $imageHeaders = $image->getHeaders(); </pre> <p>The last command is for getting the headers, where the part id is not set. But for linking the image in the mail I need the attachment id, so how can you get it?</p>