popup don't be closed with "close" link

2013-05-15 Thread Mehmet.Kaplankiran
Hi all, I want to close the (help) popup with keyboard. Bud it isn't possible. the "close" link in HelpPage deleted the content of the popup bud tthe popup don't be closed. can you help me please by this problem? Thanks ! TBEditpage.html: // BM TBEditpage.java: header.add(helpLink

Error Wicket Application in SAP NetWeaver Application Server

2012-12-19 Thread Mehmet.Kaplankiran
Hi, when I invoke Java Web Application (deployed in SAP NetWeaver Application Server 7.30) by Browser there is an error message in the Application Server. it's run in Jetty-Server without error Can anybody please tell me why this occurs? #2.#2012 12 19 12:08:55:484#+0100#Error#com.sap.engine

AW: Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
public abstract class EbaFilePanel extends Panel { private final Set validMimeTypes = new HashSet(); public EbaFilePanel(String id) { super(id); addValidMimeType("application/pdf"); addValidMimeType("image/jpeg");

AW: Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
I can download a zip document from the Internet with InternetExplorer and can read it. But with my wicket application (see html-code with iframe tag), I can not read a zip document with InternetExplorer. -Ursprüngliche Nachricht- Von: Martijn Dashorst [mailto:martijn.dasho...@gmail.com

Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
Hi, HTML: I have the following behavior in Internet Explorer (v. 6.0) and Firefox . Firefox: PDF and JPG is embedded. zip, doc, .. is not embedded but opened with appropriate program. Internet Explorer: PDF, JPG, doc to be embedded. Zip file can not be read. can someone help me why a Zip Fil

AW: panel can not be refreshed

2010-11-17 Thread Mehmet.Kaplankiran
package de.t_systems.dks.eba.pages.docedit.iframe; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.apache.wicket.markup.html.DynamicWebResource; import org.apache.wicket.markup.html.form.upload.FileUpload; publ

AW: panel can not be refreshed

2010-11-16 Thread Mehmet.Kaplankiran
Hello Ernesto, I use the classes from your link https://cwiki.apache.org/WICKET/displaying-content-eg-pdf-excel-word-in-an-iframe.html The PDF-File is displayed only when I use the constructor of panel with a parameter, even when both constructors do the same. What am I doing wrong? public cla

AW: panel can not be refreshed

2010-11-11 Thread Mehmet.Kaplankiran
The code is also from this link. It works if filename and content type is hard coded. (See my email from yesterday). But at runtime I can not view other file. -Ursprüngliche Nachricht- Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Gesendet: Donnerstag, 11. November 2010 09:

AW: panel can not be refreshed

2010-11-11 Thread Mehmet.Kaplankiran
Can someone help me? When the constructor DocEditPage is called, the variables file, file name and content type are null. These variables set to be later. But the panel is not refreshed. -Ursprüngliche Nachricht- Von: Kaplankiran, Mehmet Gesendet: Mittwoch, 10. November 2010 13:09 An:

panel can not be refreshed

2010-11-10 Thread Mehmet.Kaplankiran
Hello, I have implemented iframe and can view documents. Unfortunately, only in the class MyPdfResource hard-coded filename (example: private string filename = "test.pdf";) can be displayed. The files can not be refreshed. I hope someone can help me. greetings, Mehmet HTML: +

AW: problem with Dropdown List

2010-10-26 Thread Mehmet.Kaplankiran
sorry, in my Email is the folow method incorrect: @Override protected void setTDokar(TDokar dokart) { dokar = docType; } in source cod is in code looks like this:

problem with Dropdown List

2010-10-26 Thread Mehmet.Kaplankiran
Hello, I have a problem with dropdown list. Even if I select values in the Dropdown list (see picture below), the member variable docType is always null . Unfortunately I have found no error. I hope you can see why this is. Best regards, Mehmet //## class DocSearchPage

AW: Which component to use for html iframe

2010-09-30 Thread Mehmet.Kaplankiran
Thanks, it works Regards, Mehmet -Ursprüngliche Nachricht- Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Gesendet: Donnerstag, 30. September 2010 14:39 An: users@wicket.apache.org Betreff: Re: Which component to use for html iframe I have created [1] long time ago. Maybe i

WG: Which component to use for html iframe

2010-09-30 Thread Mehmet.Kaplankiran
InlineFrame needs PageMap or Page. Bud I want to render a stream or a PDF File in iframe-tag. WebMarkupContainer: I need to add a wicket component to WebMarkupContainer. I don't know which component -- Take a look at org.apache.wicket.markup.html.link.InlineFrame as well 2010/9/30 Al

Which component to use for html iframe

2010-09-30 Thread Mehmet.Kaplankiran
Hi, I would like to use html iframe tag. Example in html: My Example to use Wicket: Which Wicket component can I use for iframe Regards, Mehmet