Jump to content

daverich

Members
  • Posts

    6
  • Joined

  • Last visited

daverich's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi, I need your higher level view on how doable and secure is this plan. We need to find a way to sell our research to specialised webistes, which will make it available to their clients via embedded iframes located in protected membership sections. Our website is fully static and can be easily embedded- no server calls and feeds are necessary – just plain loading of html. Now – we want to offer a simple – very fast – plug and play type of content embedding into their websites. The content will be accessible via the iframes. They can theoretically place any part of our website into iframe to show it to clients where they need that. We will specify it on our server which domains can access our content via iframe using following code: Header set X-Frame-Options: “ALLOW_FROM https://specificdomain.com” Header set Content-Security-Policy: “frame-ancestors https://specificdomain.com” We will also prevent each of the shared pages from being accessed directly (by putting url into search bar) – by redirecting page to homepage when accessed NOT through iframe: <script language="Javascript"><!-- if (top.location == self.location) { top.location = "index.html" // must be viewed in main index } //--></script> OR can client side page itself check it is loaded on allowed domain? I wonder if the above solution is workable?
  2. Hello! I wonder if you can recommend a paid script which will create an advanced auto suggest box at my website? I need it to allow rich CSS styling. It should also group results by categories. The best two examples of such auto suggest box are BLOOMBERG TERMINAL and REUTER EIKON. I have attached links to images which show the search bars of both. http://s3.amazonaws.com/libapps/accounts/10680/images/Bloomberg.jpg https://blogs.thomsonreuters.com/financial-risk/wp-content/uploads/sites/12/2016/09/eikon-data-visualization-screenshot2.png If there is a software which can generate such autocomplete forms – please let me know!) Dave
  3. Hello friends! I have this table with row highlighting – it highlights the rows in different colours (first 3 in dark and later in blue). I wonder If I can also change the table cell highlight to yellow for the first three rows and keep the rest as it is now? Here is the style: <style> body { background-color: #0D0D0D; } tr:hover{ background: #0000F7; color: rgb(102,102,102); } tr:hover td{ background: transparent !important; } tr td:hover { background-color: #609 !important; } tr:nth-child(1):hover { background-color: #292C31; } tr:nth-child(2):hover { background-color: #292C31; } tr:nth-child(3):hover { background-color: #292C31; } a { color:#BFBFBF !important; } a { text-decoration:none !important; } </style> And the file itself: https://jsfiddle.net/33bxg04e/ Thanking you!) Dave
  4. Hi! I want to add horizontal row highlighting to the html table generated by Excel. I wonder if this is possible in the KNOWN UNIVERSE of human knowledge? Sometimes I think we have reached the edge with the Excel output). Please take a look and let me know if it is possible to replicate the highlighting shown on the good.html file – BUT PRESERVING THE ORIGINAL LAYOUT OF EXCEL GENERATED HTML. Dave here is the more or less good one: jsfiddle.net/1q7yqbdc and here is the originally exported html file from excel: jsfiddle.net/h5e6kjwa/1
  5. Thank you for your reply - do you think that exporting to pdf and then exporting pdf as HTML can do the trick?
  6. Hello, I am seeing very different page layouts in Firefox and Internet Explorer – when I open the webpage exported from Excel. Internet Explorer renders the webpage EXACTLY like it is shown in the excel file – the Firefox has all the Dashboard pictures squeezed into one another. I wonder if there is a way to export excel worksheet to a webpage with a fixed layout which will render the SAME in all browsers? I have attached the workbook exported and the snapshots of what I see in each of the browsers, Dave Files in my dropbox https://www.dropbox.com/s/f2uyo7rvjebcmi2/fixed%20layout2.rar?dl=02
×
×
  • Create New...