Posts

Showing posts with the label web

Links in Webview followed by dots

Image
Links in Webview followed by dots After links which are too long, I am getting ... for e.g. https://en.wikipedia.org/List_... how do i get the full link? here is my code wv_result_display.setWebViewClient(new MyBrowser()); wv_result_display.getSettings().setLoadsImagesAutomatically(true); wv_result_display.getSettings().setJavaScriptEnabled(true); wv_result_display.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY); wv_result_display.loadUrl("https://www.google.com/searchq="+tv_query.getText().toString()); Here is my output Here is my layout file <WebView android:id="@+id/wv_result_of_search" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="0.5"> Please send the layout file – Raj Jul 1 at 7:23 ...

How to use ckeditor in php

How to use ckeditor in php I am building a CMS system and I found that I can not configure the ckeditor script on my text area, can anyone help me to solve the issue My code is below: header.php <?php ob_start(); // helps to buffer our project ?> <?php include "../includes/db.php"?> <?php include "functions.php"?> <?php ob_start(); ?> <?php session_start(); ?> <?php if (!isset($_SESSION['rl'])){ header("Location:../index.php"); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>SB Admin - Bootst...

An exception occurred processing JSP page /index.jsp at line 39

An exception occurred processing JSP page /index.jsp at line 39 I really don't know what is wrong with my code .Help~ HTTP Status 500 - An exception occurred processing JSP page /index.jsp at line 39 type Exception report message An exception occurred processing JSP page /index.jsp at line 39 description The server encountered an internal error that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 39 36: <c:forEach items="${list }" var="movie"> 37: <tr data-genuitec="wc1-0-18"> 38: 39: <td data-genuitec="wc1-0-19">${movie.moviename }</td> 40: <td data-genuitec="wc1-0-20">${movie.time }</td> 41: <td data-genuitec="wc1-0-21">${movie.endtime }</td> 42: <td data-genuitec="wc1-0-22...