active questions tagged placeholder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:40:38Z http://stackoverflow.com/feeds/tag/placeholder http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1159350/what-are-placeholders-in-java -1 What are placeholders in Java Meeeee 2009-07-21T13:54:55Z 2009-12-08T23:54:03Z <p>Hello. I have been asked to go and find out about placeholders in Java. I have searched the internet and cannot find any site that will tell me what a placeholder is (in java terms), how they work and why we would use them. I was wondering if anybody could help? cheers. </p> http://stackoverflow.com/questions/1861647/how-do-i-set-placeholder-char 0 How do i set placeholder char(%)? nakada 2009-12-07T17:44:46Z 2009-12-07T17:53:43Z <p>In Objective-c ... I want represent placeholder char(%) but my code don't....</p> <pre><code>NSString *base = @"&lt;style type=\"test/css\"&gt;div{width:100\%}&lt;/style&gt;&lt;body&gt;%@&lt;/body&gt;"; NSString *html = [NSString stringWithFormat:base, @"hello world"]; NSLog(@"%@",html); </code></pre> <ul> <li>expect : div{width:100%}</li> <li>real : div{width:100}</li> </ul> <p>what is wrong?</p> http://stackoverflow.com/questions/1706705/asp-net-ajax-custom-templated-control-showing-hiding-items-with-placeholder 0 asp.net/ajax custom templated control, showing/hiding items with placeholder Mark Redman 2009-11-10T09:42:08Z 2009-11-27T19:50:18Z <p>Hi All,</p> <p>I have a custom templated control(toolbar) that contains a custom usercontrol(button) The button uses jquery to style and manage the states/postbacks/non=postbacks etc.</p> <p>A few of the buttons are hidden with a placeholder and are displayed when hitting one of the buttons.</p> <p>All the buttons with regards jquery seem to be initiated on postback (ajax style within an UpdatePanel using the PageRequestManager) however the viewstate is lost on the buttons made invisible by the placeholder.</p> <p>It appears to be an issue is specific to the viewstate and buttons on the placeholder in the templated control. This normally works in a non-ajax environment, I suspect I am missing something.</p> <p>Any comments that get me thinking appreciated.</p> <p>The code is located in various parts and probably not worth pasting since it will be completely disconnected (I know this doesnt help)</p> http://stackoverflow.com/questions/1751418/placeholders-using-generic-odbc-drivers 0 Placeholders using generic ODBC drivers CheeseConQueso 2009-11-17T20:07:51Z 2009-11-20T06:17:47Z <p>Currently, I'm peppering form submissions to account for single quotes &amp; other garbage.</p> <pre><code> $form_field_value= str_replace("'", "''", stripslashes($form_field_value)); </code></pre> <p>It is to prep the value for insertion using:</p> <pre><code> $insert_sql = "insert into table (field) values ('".$form_field_value."')"; odbc_exec($conn, $insert_sql); </code></pre> <p><hr></p> <p>Essentially, I want to use placeholders for these insert/update statements.</p> <p>I tried defining <code>$par1</code> and <code>$par2</code> as literals and then executing this</p> <pre><code>$insert_sql = "insert into table (field,txt) values (?,?)"; odbc_exec($conn, $insert_sql, $par1, $par2); </code></pre> <p>It failed and gave me this error:</p> <p>Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC SQL Server Driver]COUNT field incorrect or syntax error, SQL state 07001 in SQLExecDirect in test.php on line 10</p> <p>Line 10 is the exec statement.</p> <p><hr></p> <p>I can't find syntax for using placeholders with this odbc driver. Any suggestions?</p> <p>The <code>$conn</code> connection variable is working fine.</p> <p><hr> <b>EDIT:</b></p> <p>Last attempt still failing - odbc_execute() is an undefined function. I have to use odbc_exec()</p> <pre><code>$par1="eggs"; $par2="milk"; $insert_crs = "insert into table (field,txt) values (?,?)"; $stmt = odbc_prepare($conn, $insert_sql); odbc_exec($stmt, array($par1, $par2)); </code></pre> http://stackoverflow.com/questions/1764173/truncating-a-placeholder-and-appending-3-dots 0 Truncating a placeholder and appending 3 dots (...) SB 2009-11-19T15:40:09Z 2009-11-19T15:42:04Z <p>I have a requirement to add serveral images to an asp:placeholder control on a webpage. The added images are displayed one after the other across the page. However if the browser is resized by the user and the width is less than the overall length of the added images then the placeholder should be truncated and 3 dots added to the end of it to indicate there are more images in the "list" but they are unable to be diaplayed. I am using standard asp:image controls in C#, does anyone have any idea how this can be done?</p> http://stackoverflow.com/questions/1031597/how-to-make-usercontrol-to-use-master-page-placeholders 0 How to make UserControl to use master page placeholders? igor 2009-06-23T09:47:40Z 2009-11-13T21:00:16Z <p>Hello all.</p> <p>There's quite weird issue and I wonder if it had ever occurred before. It looks odd that nobody had been caught by it, by Google says so.</p> <p>that's what we have:</p> <p>Master page</p> <p>Masterpage.master</p> <p> blahblagblag</p> <p>User control whose page is bound to mentioned-above master page</p> <p>According design, we need to define from .ascx user control</p> <pre><code>SomeControl.ascx &lt;asp:Content ContentPlaceHolderID="phMaster"&gt; // this will not work, and issue is to make it work </code></pre> <p>But how to do it, considering that user controls cannot be bound to masterpage?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1526383/how-can-the-literal-contents-of-a-placeholder-be-read 0 How can the literal contents of a PlaceHolder be read? EliThompson 2009-10-06T15:33:09Z 2009-10-06T16:08:45Z <p>I have some code on a User Control that looks like this:</p> <pre><code>&lt;asp:PlaceHolder id="ph1" runat="server"&gt; &lt;script type="text/javascript"&gt; jQuery(function() { doSomethingAwesome(); }); &lt;/script&gt; &lt;/asp:PlaceHolder&gt; </code></pre> <p>I want to get the contents of the PlaceHolder control. I'm trying to get it in the OnPreRender of the page this control is on. I would have expected that the contents of the PlaceHolder would be be a single Literal control, but the Controls collection is empty. </p> <p>How can I get the contents of the PlaceHolder control on the server side?</p> http://stackoverflow.com/questions/1472176/proper-way-to-hide-place-holders-in-a-sharepoint-2007-master-page 0 Proper way to hide place holders in a SharePoint 2007 Master Page? Mike Arsenault 2009-09-24T14:43:24Z 2009-09-25T14:38:11Z <p>I am working on a specialized instance of MOSS for a client where What I am wanting to do is hide elements on the master page. In particular, I want to hide the main top navigation bar, the search functionality and the label that shows up in the upper-left-hand corner that tells you the name of the site you are on. So I made a copy of the default.master, and then in SP Designer I set the visible attributes for the placeholders for these blocks to “false” in the new master file. </p> <p>I can then assign the master to my normal site collection no problems and it seems to been working like I want it to. But when I go to look at the system pages (i.e. any of the forms or backend stuff), it is still using the old default master. And when I tried to set the System Master Page to my customized master file, my MOSS instance threw a File Not Found error. Then certain parts of the admin area just started failing in that same way (i.e. I would try to go into Site Settings -> Content and Structure and it also would throw a File Not Found error) Then at one point, the whole Site Collection would throw “Unknown Error” and there didn't seem to be a way to recover, short of reverting the state of the VM I am running MOSS in for development purposes.</p> <p>So I am curious, what is the best way to create a custom master page and then hide elements on that page? I realized that my web cluster didn’t have the proper flag set up to actually show me real ASP error messages, so I am going to change that tonight when I get home and see what SP is really telling me about all of this. I have also read that changing the application.master file is not recommended, but I figured I could get away with making a custom page for the Site and System master pages and not worry about application.master. I have been reading a bunch of Heather Solomon articles as well as various other things. They all basically say that it’s ok to hide elements on a master page, but not delete them outright as SP will break if you do that. Would it be advisable to use a JS/CSS hack to manually hide elements that way, rather than actually making a new master page?</p> http://stackoverflow.com/questions/1297787/how-to-swap-a-swf-file-with-an-image-on-a-disjointed-rollover 0 How to swap a SWF file with an image on a disjointed rollover ghost sick 2009-08-19T04:21:12Z 2009-08-19T04:21:12Z <p>I have a site that has a short SWF file that plays when the site is loaded. I want to use the space where this SFW file is at to display images when a thumbnail is clicked. I have named the SWF file, but it doesn't show up when when I am in the rollover menu. </p> http://stackoverflow.com/questions/1243603/how-to-show-content-from-contentplaceholder-inline 0 How to show content from contentPlaceholder inline H4mm3rHead 2009-08-07T08:31:24Z 2009-08-07T09:46:21Z <p>Hi, I have a page where i in my masterpage have a toolbar with a "Home" button to the far left. This button is not in a contentplaceholder but on the page. I want to have the opportunity for derived pages to add their own controls or whatever to the toolbar to be whown <em>after</em> the "home" button. But how to do this? I have tried to put in a content placeholder, but it seems that i cannot get it to show inline with the other stuff, it breaks and the content of the contentplaceholder is shown below the button instead. anyone know how to solve this?</p> <p>/Brian</p> http://stackoverflow.com/questions/1125357/asp-net-c-enabling-disabling-all-asp-controls-in-table-placeholder 0 ASP.NET C#: Enabling / Disabling all ASP Controls in Table / Placeholder Shaharyar 2009-07-14T13:24:32Z 2009-07-14T13:28:17Z <p>Hello guys,</p> <p>How do I disable for example all button controls in a certain placeholder?</p> <p>The plot: I am coding an application for web that uses some buttons which get disabled after you click them.</p> <p>Now when I click the "New Game" button, all previously disabled buttons should be enabled again.</p> <p>Any help is very appreciated!</p> http://stackoverflow.com/questions/1101723/issue-adding-multiple-controls-to-placeholder-returned-by-function 0 Issue adding multiple controls to placeholder returned by function Gthompson83 2009-07-09T03:37:04Z 2009-07-10T02:55:17Z <p>I have a function that creates multiple controls. Mainly input fields and an imagebutton with dynamic data for an Amazon payment button. </p> <p>How can I add these controls to a placeholder so they are rendered on the page?</p> <p>I tried creating a placeholder inside the function, adding controls and returning the placeholder. </p> <pre><code>plhCart = returnedPlaceHolder() </code></pre> <p>The controls did not render however when do a plhCart.Controls.Count the value was correct. </p> <p>This is the function creating the controls and adding them to a placeholder object:</p> <pre><code> Protected Function GetPayNowWidgetForm(ByVal formHiddenInputs As SortedDictionary(Of [String], [String])) As PlaceHolder Dim payButton As New ImageButton Dim plhForm As New PlaceHolder Dim counter As Integer = 1 payButton.ID = "imgPayButton" payButton.PostBackUrl = "https://authorize.payments-sandbox.amazon.com/pba/paypipeline" payButton.ImageUrl = "https://authorize.payments-sandbox.amazon.com/pba/images/GMPayNowWithAmazon.png" plhForm.Controls.Add(payButton) ' Add the Key/Value pairs from formHiddenInputs For Each kvp As KeyValuePair(Of [String], [String]) In formHiddenInputs Dim hiddenField As HtmlControl = New HtmlControls.HtmlInputHidden ' Dim hiddenField As New HiddenField hiddenField.Attributes.Add("name", kvp.Key) hiddenField.Attributes.Add("value", kvp.Value) plhForm.Controls.Add(hiddenField) counter += 1 Next Return plhForm End Function </code></pre> <p>I am now using Steve Temple's suggestion and adding this returned placeholder to the placeholder on my page using </p> <pre><code>plhCart.Controls.Add(GetPayNowWidgetForm(...)) </code></pre> <p>This is working fine, and probably better than what I came up with last night. My original solution was to create the controls and returning them as a system.array. Then looping through the array to add each control to the placeholder. </p> http://stackoverflow.com/questions/1044996/how-to-replace-text-in-a-powerpoint-ppt-document 2 How to replace text in a powerpoint (.ppt) document? Martin K. 2009-06-25T16:49:25Z 2009-07-05T06:39:53Z <p>What solutions are there? I know only solutions for replacing Bookmarks in Word (.doc) files with Apache POI?</p> <p>Are there also possibilities to change images, layouts, text-styles in .doc and .ppt documents? </p> <p>I think about replacement of areas in word and powerpoint documents for bulk processing.</p> <p>Platform: MS-Office 2003</p> http://stackoverflow.com/questions/970420/c-printformat-placeholders 0 C# printformat placeholders Nefzen 2009-06-09T14:34:55Z 2009-06-09T14:39:13Z <p>hey,<br> can anyone give me a list of the printFormat placeholders in C#? somewhere deep in MSDN one exists, and I even found it, but it's really troublesome and not really convenient.</p> <p>thanks</p> http://stackoverflow.com/questions/830304/hw-to-create-line-breaks-between-dynamically-generated-labels-in-a-placeholder 0 hw to create line breaks between dynamically generated labels in a placeholder? sahil garg 2009-05-06T15:52:13Z 2009-05-06T16:00:48Z <p>This is the code below in code behind file's <code>Page_Load</code> event:</p> <pre><code> LinkButton linkButton = new LinkButton(); linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + i; linkButton.ForeColor = Color.Blue; linkButton.Font.Bold = true; linkButton.Font.Size = 14; linkButton.Font.Underline = false; linkButton.Text = itemList[i].ItemTitle.InnerText; linkButton.Click += new EventHandler(LinkButton_Click); linkButton.Attributes.Add("LinkUrl",itemList[i].ItemLink.InnerText); PlaceHolder1.Controls.Add(linkButton); Label label = new Label(); label.ID = "LabelDynamicInPlaceHolder1Id" + i; label.ForeColor = Color.DarkGray; label.Text = itemList[i].ItemDescription.InnerText; PlaceHolder1.Controls.Add(label); </code></pre> <p>I want a line break between each control generated.</p> http://stackoverflow.com/questions/483352/asp-net-panel-vs-placeholder 7 ASP.Net: Panel VS. PlaceHolder 2009-01-27T13:14:09Z 2009-01-27T13:22:31Z <p>What is the difference between Panel and PlaceHolder in ASP.NET?</p> http://stackoverflow.com/questions/182281/replace-placeholders-in-word-document-with-c 6 Replace Placeholders in word document with c# Xelluloid 2008-10-08T11:38:54Z 2008-12-31T18:28:19Z <p>Hi there,</p> <p>I have a template in word (.docx) format and want to replace some placeholders in this template with my own data, do you know where I can find the right classes for this project? It would be nice for me to know the namespace. Are there any newer classes for handling word documents in the docx format (xml) than the com classes? Thank you for all your answers, I hope someone can help me with my problem.</p> <p>greets </p> <p>Sebastian</p> http://stackoverflow.com/questions/145052/simplest-way-to-use-beanutils-alike-replace 2 Simplest way to use "BeanUtils alike" replace kolrie 2008-09-28T02:41:41Z 2008-09-28T08:23:27Z <p>Is there any libraries that would allow me to use the same known notation as we use in BeanUtils for extracting POJO parameters, but for easily replacing placeholders in a string?</p> <p>I know it would be possible to roll my own, using BeanUtils itself or other libraries with similar features, but I didn't want to reinvent the wheel.</p> <p>I would like to take a String as follows:</p> <pre><code>String s = "User ${user.name} just placed an order. Deliver is to be made to ${user.address.street}, ${user.address.number} - ${user.address.city} / ${user.address.state}"; </code></pre> <p>And passing one instance of the User class below:</p> <pre><code>public class User { private String name; private Address address; // (...) public String getName() { return name; } public Address getAddress() { return address; } } public class Address { private String street; private int number; private String city; private String state; public String getStreet() { return street; } public int getNumber() { return number; } // other getters... } </code></pre> <p>To something like:</p> <pre><code>System.out.println(BeanUtilsReplacer.replaceString(s, user)); </code></pre> <p>Would get each placeholder replaced with actual values.</p> <p>Any ideas?</p>