Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all 81696 articles
Browse latest View live

How do I get "data" in a click event handler?

$
0
0

In the below code I'm trying to put a button (icon) in the cell(column) and trigger page location change on the Controller. I cannot seem to get "data" in the .click function on line 22. New in this arena so info help is appreciated.

    columnDefs: [
                    {
                        className: 'control responsive',
                        orderable: false,
                        render: function () {
                            return '';
                        },
                        targets: 0
                    },
                    {
                        targets: 1,
                        data: null,
                        orderable: false,
                        defaultContent: '',
                        rowAction: {
                            element: $("<div/>")
                                .addClass("text-center")
                                .append($("<button/>")
                                    .addClass("btn btn-outline-primary btn-sm btn-icon")
                                    .attr("title", app.localize("Open Document"))
                                    .append($("<i/>").addClass("la la-search"))
                                ).click(function (data) {
                                    document.location.href = abp.appPath + "App/CustomersAndAccounts/ViewCustomerDetail?id=1";
                                })
                        }
                    },

how to disable datepicker to show on custom field error message (Datatables Editor)

$
0
0

Hello,
I've added date time picker on a custom field within the editor, but the problem that every time I trigger an error on that composite field, the picker displays even there's no error with the date itself.
I've done it like so:

new Editor.DateTime($('input.date', this), $.extend({
                    format: conf.format, // can be undefined
                    i18n: that.i18n.datetime,
                    onChange: function () {
                        $('input.date', self).trigger('input');
                        $('input.date', self).trigger('change');
                    }
                }, conf.opts));

How I can disable datetime picker from being shown completely even if there's an error with the date field?
Thanks in advance.

Hyperlink entire row or cell using data-href attribute

$
0
0

I saw the example in the documentation for using a column renderer to make the value in the column a hyperlink. However I wanted to make the entire row or cell a hyperlink, not just the text within it (and not using css display). I was curious how you would go about making a row or column a hyperlink using jquery delegated events and the data-href attribute. I got this working by simply referring to the actual table data with the following:

var rankTable = $('#myTable').DataTable();
$('#myTable').on('click', 'tbody tr', function() {
  window.location.href = `someurl/${table.row(this).data()[1]}`;
});

but i would like to know how to go about adding the data-href attribute to a td or tr if i wanted to be able to do something like the following:

<tr data-href='someurl/1234'>
  <td>Cell Data</td>
</tr>
$('#myTable').on('click', 'tbody tr', function() {
  window.location.href = $(this).data('href');
});

I swore I saw an example somewhere about adding attributes to rows or cells but can't seem to find it now.

Datatable Ajax SearchParameters

$
0
0

I have a custom made filter function on my website where I am using one of your datatables. When initializing the datatable one can add parameters with the "data" option. I want to do this, but only if search terms are provided. The amount of search terms and their key-value pairs will be known at runtime which is why I can't define them at datatable initialization.

I am basically looking for a possibility to simply add (remove) up to n parameters to (from) the request url:

exampleUrl?draw=1&columns...&key1=value1&...&keyN=valueN&_=1581171459716

I know about the option to add parameters at runtime by using a function for "data", but I didn't understand how to use it in my case. Maybe someone can provide an example of how to do this.

Row().remove() Not working for me.

$
0
0

Hi there, this is my first time trying to use DataTables, I'm trying to use the Row().remove() but I am not even able to trigger it via the button and I don't know what I am doing wrong.

I tried hooking it to the button using id's or classes but I am still unable to do so.

=== JS ===
let table = $('#existingVariableTable').DataTable();

$('#existingVariableTable tbody').on('click', 'img.icon-delete', function () {
    alert("click");
});

===HTML===

                   <table id="existingVariableTable" class="display">
                        <thead>
                            <tr>
                                <th>Column 1</th>
                                <th>Column 2</th>
                                <th></th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <td>Lorem ipsum</td>
                                <td>7788776</td>
                                <td>
                                    <button type="button">
                                        <img class="icon-delete" src="./assets/deleteIcon.png">
                                    </button>
                                </td>
                            </tr>
                         </tbody>
                     </table>

Individual column searching not working.

$
0
0

Hi,

Can anyone see what is wrong with this?
Following the example from : https://datatables.net/examples/api/multi_filter_select.html

The selects are appearing but the search is not doing anything. No errors in the console.

Thanks,

Mick

debug code: okixan

$(document).ready(function () {

            var table = $('#lookupTable').DataTable({

                initComplete: function () {
                    this.api().columns().every( function () {
                        var column = this;
                        var select = $('<select><option value=""></option></select>')
                            .appendTo( $(column.footer()).empty() )
                            .on( 'change', function () {
                                var val = $.fn.dataTable.util.escapeRegex(
                                    $(this).val()
                                );

                                column
                                    .search( val ? '^'+val+'$' : '', true, false )
                                    .draw();
                            } );

                        column.data().unique().sort().each( function ( d, j ) {
                            select.append( '<option value="'+d+'">'+d+'</option>' )
                        } );
                    } );
                },


                responsive: true,

                @if ($pagination != 1)
                    "paging":   false,
                @endif


                @if($show_export_buttons === 1)

                    dom: 'Bfrtip',
                    buttons: [
                        'copy', 'csv', 'excel', 'pdf', 'print'
                    ],
                @endif

                "processing": true,
                "pageLength": 25,
                "bFilter":   false,

                "columnDefs": [
                    {
                        "targets": [ -1 ],
                        "visible": false,
                        "searchable": false
                    }

                ],


                //This adds the Bootstrap alert class, if there is one in the last column
                "createdRow": function( row, data, dataIndex ) {

                    /*console.log(data);*/

                    if ( data[data.length-1] != '' ) {
                        $(row).addClass( data[data.length-1] );
                    }
                }




            });

            new $.fn.dataTable.FixedHeader( table );
            $('#loader').hide();
            $('#lookupTable').show();
        });


Error reload datatable with new json data

$
0
0

Hi °
I have loaded the data in my table and everything is going well, the problem is when I want to update the table depending on the filters with external controls.

This filter returns the same result in a WebMethod with asp.net c #, it only returns less data than the first load.

function CargarGridBonds() {
    if ($.fn.dataTable.isDataTable('#gvBonds')) {
        var jsonData = null;
       var tv = $('#ContentPlaceHolder1_cboTv').val();
       var issuer = $('#ContentPlaceHolder1_cboIssuer').val();
       var serie= $('#ContentPlaceHolder1_cboSerie').val();
       var emisor= $('#ContentPlaceHolder1_cboEmisor').val();
       var fecha=''
     $.ajax({
            type: 'POST',
            url: "Name.aspx/GetBondsFilter",
            contentType: "application/json; charset=utf-8",
            async: false,
            dataType: 'json',
            data: "{ 'tv':'" + tv + "','issuer':'" + issuer + "','serie':'" + serie + "','emisor':'" + emisor + "','fecha':'" + fecha + "'}",
            success: function (json) {
                var datos = json.d.data;

                jsonData = JSON.stringify(datos);
            },
            failure: function () {
                alert("Sorry,there is a error!");
            }
        });

     table .clear().draw();
   table .rows.add(jsonData ); // Add new data
  table .columns.adjust().draw(); // Redraw the DataTable
    }
    else {

        table = $("#gvBonds").DataTable({
            scrollY: "600px",
            scrollX: true,
            scrollCollapse: true,
            paging: false,
            'searching': false,
            "bFilter": true,
            ajax: {
                method: "POST",
                url: "Name.aspx/GetBondsJson",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                data: function (d) {
                    return JSON.stringify(d);
                },
                dataSrc: "d.data"
            },
            columns: [
                        { 'data': 'IdentifierID', "visible": false },
                        { 'data': 'TV' },
                        { 'data': 'Issuer' },
                        { 'data': 'Series' },
                        { 'data': 'Emisor' },
                        {
                            data: 'FechaVencimiento',
                            type: 'date',
                            render: function (data, type, row) { return data ? moment(data).format('DD/MM/YYYY') : ''; }
                        },
                         { 'data': 'IsShortRate' },
                        { 'data': 'Liquidity_Desc' },
                        { 'data': 'Internal_Desc' },
                        { 'data': 'Global_Fitch_Desc' },
                        { 'data': 'Global_Moodys_Desc' },
                        { 'data': 'Global_SP_Desc' },
                        { 'data': 'Global_HR_Desc' },
                        { 'data': 'Local_Fitch_Desc' },
                        { 'data': 'Local_Moodys_Desc' },
                        { 'data': 'Local_SP_Desc' },
                        { 'data': 'Local_HR_Desc' }


            ],
            'columnDefs': [{
                'targets': 6,
                'searchable': false,
                'orderable': false,
                'className': 'dt-body-center',
                'render': function (data, type, full, meta) {
                    var is_checked = data == true ? "checked" : "";
                    return '<input type="checkbox" class="checkbox" ' +
                        is_checked + ' disabled/>';

                }
            }],
            "language": {
                "sProcessing": "Procesando...",
                "sLengthMenu": "Mostrar _MENU_ registros",
                "sZeroRecords": "No se encontraron resultados",
                "sEmptyTable": "Ningún dato disponible en esta tabla =(",
                "sInfo": "Mostrando registros del _START_ al _END_ de un total de _TOTAL_ registros",
                "sInfoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros",
                "sInfoFiltered": "(filtrado de un total de _MAX_ registros)",
                "sInfoPostFix": "",
                "sSearch": "Buscar:",
                "sUrl": "",
                "sInfoThousands": ",",
                "sLoadingRecords": "Cargando...",
                "oPaginate": {
                    "sFirst": "Primero",
                    "sLast": "Último",
                    "sNext": "Siguiente",
                    "sPrevious": "Anterior"
                },
                "oAria": {
                    "sSortAscending": ": Activar para ordenar la columna de manera ascendente",
                    "sSortDescending": ": Activar para ordenar la columna de manera descendente"
                },
                "buttons": {
                    "copy": "Copiar",
                    "colvis": "Visibilidad"
                }
            },
        });

        new $.fn.dataTable.FixedColumns(table, {
            leftColumns: 4
        });
    }
}

The problem is when I call the function from a button, the next line is validated where the datatable is already built.

$("#btnFiltro").click(function () {
    CargarGridBonds();
});

if ($.fn.dataTable.isDataTable('#gvBonds')) {...

It does not allow me to apply the new data in json

  table .clear().draw();
   table .rows.add(jsonData ); // Add new data
  table .columns.adjust().draw(); // Redraw the DataTable

The error is:

Details:
The table has no filter.
The table has ordering.
The table has the first 4 fixed columns

Thanks.
-Rafael

cell nowrap isn't working


calling sp in controller

$
0
0

This not so much a datatables question other than it is in a asp.net mvc project that has datatables in it. I am having the user import a text file into a datatable: https://editor.datatables.net/examples/extensions/import

After it is imported and they have reviewed the data, I need the user to click a button to call a stored procedure. The stored procedure is parsing the data and putting into another table, which is the datasource for another datatable. But the stored procedure itself does not return any data. From what I am researching, since datatables uses MVC i need to put that call in a controller.

public class ParseImportDataController: ApiController
{
    [HttpGet]
    [HttpPost]
    public IHttpActionResult cleanAndImport()
    {
        var request = HttpContext.Current.Request;
        var settings = Properties.Settings.Default;
        string AsOfCookie = request.Cookies.Get("AsOfDate").Value;
 
        string strCon = settings.DbConnection;
        SqlConnection DbConnection = new SqlConnection(strCon);
        DbConnection.Open();
 
        SqlCommand command = new SqlCommand("sp_ImportFTE", DbConnection);
        command.CommandType = System.Data.CommandType.StoredProcedure;
        command.Parameters.Add(new SqlParameter("@EffectiveDate", AsOfCookie));
        command.ExecuteNonQuery();
        DbConnection.Close();
        return Ok(1); //no idea what to return
    }
}

I can't find out how I have the button click call this code in the controller. Can I use Buttons to add a custom button that will call the cleanAndImport function?

I have no idea if the code in the controller is correct, but I figure that will be the next struggle.

Any help would be greatly appreciated.

Scroller doesn't set scrollbar position when table is first drawn

$
0
0

So I'm using scroller with a very large table (>30000 rows) with server side processing.

If I'm in the middle of the table somewhere, and click the reload icon in the browser, It will re-draw the table, and load the data from the position I was before the redraw, as expected.

The problem is that the scrollbar stays at the top, so you cannot see the data that was just loaded as it's way down in the table somewhere. if I click the down arrow at the bottom of the scrollbar, it then loads the next batch of data from the server, and draws it at the top of the table, so now you can see the data, but cannot scroll up, as it's close to the top of the table.

This seems to be a new issue, as it didn't occur until we upgraded to version 2.0.1

The site is behind a firewall, so I can't attach a link.

I tried to use the debugger to upload the configuration information to you, but it appears i'm getting a 500 response from your server.

Thanks,

Jeff

Flexible table width not working with Android phone in Chrome

$
0
0

I have problem with getting Bootstrap to play with DataTables and flex in phone-mode using an Android Phone in Chrome. With iOS there is no problem. Have a look at the screenshot taken from
https://datatables.net/examples/basic_init/flexible_width
The table stretches out of the grid. Any suggestion for getting it to stay inside?

Attach a document to a cell/row

$
0
0

Good evening (o;

Is there a way to sort of attach a document to a cell? Like adding a PDF?

I am currently working on an internal ordering system where people create orders, add items with this plugin...and hopefully would be able to attache for example a mechanical drawing to an order item cell in the order...

So can I somehow attach a hook to enable a file upload?

thanks in advance
richard

Whats wrong with this?

$
0
0

Ok this is mysql database, java using eclipse springboot webapp. Everything works but the data comes back as one big unformatted blob on the jsp page when going to web site localhost:8080/index. I know I am almost there but somethings not 100% correct.I removed the jsp datatable part on the jsp and got the same result, so the page is apparently not seeing that but I dont know why?

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.service.ServiceInterface;

import model.ScraperObject;
@RestController
public class HomeRestController {
    @Autowired
    private ServiceInterface scraperService;

    @RequestMapping(path="/index", method=RequestMethod.GET)
    public List<ScraperObject> getAllNonDectivatedData(){
        List<ScraperObject>  allNonDectivated = scraperService.getAllNonDeactivatedOnes();
        return allNonDectivated;
    }
}

jsp page

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Spring Boot + JPA + Datatables</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <link rel="stylesheet" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css">
    <script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
    <script>$(document).ready( function () {
         var table = $('#scrapedTable').DataTable({
                "sAjaxSource": "/scrapedData",
                "order": [[ 0, "asc" ]],
                "columns": [
                      { "data": "price"},
                      { "data": "description" },
                      { "data": "url" }
                ]
         })
    });
    </script>
</head>
<body>
    <h1>Employees Table</h1>
    <table id="scrapedTable" class="display">
      
       <!-- Header Table -->
       <thead>
            <tr>
                <th>Price</th>
                <th>Description</th>
                <th>Url</th>
            </tr>
        </thead>
        <!-- Footer Table -->
        <tfoot>
            <tr>
                <th>Price</th>
                <th>Description</th>
                <th>Url</th>
            </tr>
        </tfoot>
    </table>

</body>

</html>

pojo

package model;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;

@Entity
public class ScraperObject {
    
    //private long id;
    //private String name;

    
    //private boolean active;
    @Id
    @GeneratedValue
    @Column(name="url")
    private String url;
    @Column(name="description")
    private String description;
    @Column(name="price")
    private String price;
    //public String scrapedData;
//  public String date;
//  public String location;
//  public UUID guid;
//  public String picture;
//  public boolean deactivatedBoolean;

    public void setUrl(String aUrl) {
        url =aUrl;
    }
    public String getUrl() {
        return url;
    }

    
        
    public void setPrice(String aPrice) {
        price = aPrice;
    }
    public String getPrice() {
        return price;
    }
    public void setDescription(String aDescription) {
        description = aDescription;
    }
    public String getDescription() {
        return description;
    }
    
    /*
     * 
     * public String getPicture() { 
        return picture;
    }
    public void setPicture(String aPict) {
        picture = aPict;
    }
    public boolean getDeactivated() {
        return deactivatedBoolean;
    }
    public void setDeactivated(boolean aBoolean) {
        deactivatedBoolean = aBoolean;
    }
    public UUID getGuid() {
        return guid;
    }
    public String getLocation(String aLocation) {
        return location;
    }
    public String  getDate() {
        return date;
    }
    public String getLocation() { 
        return location;
    }
    public void setLocation(String aLocation) {
        location = aLocation;
    }
    public void setGuid(UUID aGuid) {
        guid = aGuid;
    }
    public void setDate(String aDate) {
        date = aDate;
    }
    public void setSrappedData(String aScrappedData) {
        scrapedData =aScrappedData;
    }
    public String getScrapedData() {
        return scrapedData;
    }
    */
}


service

package com.service;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.repository.ScraperMqSQL;

import model.ScraperObject;

@Service("scraperService")
public class ScraperServiceImpl implements ServiceInterface{
    @Autowired
    private ScraperMqSQL repository;

    @Override
    public List<ScraperObject> getAllNonDeactivatedOnes() {
        return repository.getAllNonDeactivated();
    }
}

Datatables print auto print but keep window open

$
0
0

I am using the datatables print funtions with autoPrint: true but when cancel the print the print window get closed.
Is there any option available where we can keep the print window open after print or cancel print.

running example problem with CORS

$
0
0

I try to run example from editor downloaded, and get this issue.
Access to XMLHttpRequest at 'file:///C:/xampp/htdocs/Editor/controllers/staff.php?=1581480890759' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https./C:/xampp/htdocs/Editor/controllers/staff.php?=1581480890759:1 Failed to load resource: net::ERR_FAILED.

please, somebody help me....


BeforeSend with jQuery DataTables

$
0
0

How can I use BeforeSend ajax property with jquery datatables?because my server side api want autharization..I used headers instead of BeforeSend but it gave 405 error

that give 405 error

$(document).ready(function() {
  var username = localStorage.getItem("Username");
  var password = localStorage.getItem("Password");
  var url = "https://lim.com.tr/app/public/api/v1/policelerim";
  var table = $('#example').DataTable({
    "processing": false,
    "serverSide": false,
    "ajax": {
      url: url,
      type: "POST",
      BeforeSend: {
        'Authorization': "Basic " + btoa(username + ":" + password)
      },
    }
  });
});

I tried this but it still error

  $(document).ready(function() {
    var username="info@lim.com.tr";//localStorage.getItem("Username");
        var password="102030asd";//localStorage.getItem("Password");
        var url="https://lim.com.tr/app/public/api/v1/policelerim";


 $('#example')
    .on('preXhr.dt', function ( e, settings, data ) {
        data.Authorization = "Basic " + btoa(username + ':' + password);
    } ).dataTable( {
            "processing": true,
            "serverSide": true,
            "ajax":{
                "url": url,
                "type": "POST"

            }

} );

} );

I upload here if you want debug with browser

http://hybridsoftware.net/ha/policelerim.html

colvis with groups of columns

$
0
0

I'm trying to do column visibility with grouping. I currently have:

$(document).ready(function() {
        var table = $('#table1').DataTable( {
                fixedHeader: true,
                dom: 'Blftrip',
                buttons: [
                {       
                   columns: [1,2,3,4,5] ,
                   extend: 'colvis',
                   text: 'Toggle Column Sets',
                }
        ]
 } );
} );

When I press the "Toggle Column Sets" button, it currently gives me the option of toggling each of the columns 1-5 individually. I want it so that when I press "Toggle Column Sets", it instead gives my an option to toggle [1,2] or [3,4,5] as groups.

What's the easiest way to do this?
Thanks.

.NET CORE 3.1 - getting Cannot read property 'length' of undefined - Urgent

$
0
0

I migrated a working project from .net core 2.1 to 3.1 and I am now receiving this error from: jquery.dataTables.min.js
Uncaught TypeError: Cannot read property 'length' of undefined
I am fetching data from the database successfully but displaying it is causing this error.

I tried with both DataTables Editor v1.9.0 and DataTables Editor v1.9.2 and with both DataTables-1.10.19 and DataTables-1.10.20

Refresh DataTable without changing the state of Child Rows

$
0
0

The datatable contains child rows.
The table's data should refresh after 5 seconds, but, as soon as the page refreshes, the rows that are in row.show() state revert back to their hidden state. I want to refresh the table values such that the state of the table is maintained. Django is used for backend which is reading the data from a mysql database.


{% extends "tableviewer/base.html" %} {% block content1 %} <!-- head section --> <style> @import url('//cdn.datatables.net/1.10.2/css/jquery.dataTables.css'); td.details-control { background: url('http://www.datatables.net/examples/resources/details_open.png') no-repeat center center; cursor: pointer; } tr.shown td.details-control { background: url('http://www.datatables.net/examples/resources/details_close.png') no-repeat center center; } </style> {%endblock%} {% block content %} <!-- body section --> <!-- <button type="button" class="refresh">Reset Table</button> --> <table id = "table1"> <thead class = "thead"> <tr> <th></th> <th> AUTHOR ID</th> <th>AUTHOR NAME</th> <th>Article</th> <th>Random Values</th> </tr> </thead> <tbody> {% for aob in obj %} <tr data-child-value="abcd"> <td class="details-control"></td> <td>{{aob.authId}}</td> <td>{{aob.authName}}</td> <td>{{aob.article}}</td> <td><font color = {{color}}>{{random_nos}}</font></td> <!-- <td><font color = {{color}}><div id = "autochange">{{random_nos}}</div></font></td> --> <!-- <td id = "autochange"><font color = {{color}}>{{random_nos}}</font></td> --> </tr> {%endfor%} </tbody> </table> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.20/css/jquery.dataTables.css"> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.js"></script> <script type="text/javascript"> function format(value) { reVal = '<div>Hidden Value: ' + value + '</div>'; return reVal; } $(document).ready(function () { var table = $('#table1').DataTable({}); // Add event listener for opening and closing details $('#table1').on('click', 'td.details-control', function () { var tr = $(this).closest('tr'); var row = table.row(tr); if (row.child.isShown()) { //alert("inside isShown == True"); // This row is already open - close it row.child.hide(); tr.removeClass('shown'); } else { //alert("inside isShown == False"); // Open this row row.child(format(tr.data("data-child-value"))).show(); tr.addClass('shown'); } }); }); </script> {% endblock %}

Don't work/ When I try open AdminVeiwDefinition doc. Help me please

$
0
0

Error 500
HTTP Web Server: Command Not Handled Exception.

xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="Log_Viewer.xml"?>
<CommonBaseEvents>
<CommonBaseEvent creationTime="2020-01-24T02:29:52.514+06:00" globalInstanceId="ELc0a8990100016fd418cc0500000000" msg="CLFRU0029W: Your data is not currently roaming because you started the session with a different application than the Notes client (for example, Symphony or Designer)." severity="30" version="1.0.1">
<extendedDataElements name="CommonBaseEventLogRecord:level" type="noValue">
<children name="CommonBaseEventLogRecord:name" type="string">
<values>WARNING</values>
</children>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceClassName" type="string">
<values>com.ibm.notes.roaming.provider.operations.NotesRoamingVeto</values>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceMethodName" type="string">
<values>shouldRoam</values>
</extendedDataElements>
<sourceComponentId component="Expeditor 6.2" componentIdType="ProductName" instanceId="1579774186232" location="RealSoft" locationType="Hostname" subComponent="com.ibm.notes.roaming.provider.notesadapter" threadId="34" componentType="http://www.w3.org/2001/XMLSchema-instance"/>
<situation categoryName="ReportSituation">
<situationType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ReportSituation" reasoningScope="INTERNAL" reportCategory="LOG"/>
</situation>
</CommonBaseEvent>
<CommonBaseEvent creationTime="2020-01-24T02:29:56.725+06:00" globalInstanceId="ELc0a8990100016fd418cc0500000002" msg="CWPMS0008I: com.ibm.collaboration.realtime.policy.sametime.managedsettings.ManagedSettingsPolicyProvider is not currently available." severity="30" version="1.0.1">
<extendedDataElements name="CommonBaseEventLogRecord:level" type="noValue">
<children name="CommonBaseEventLogRecord:name" type="string">
<values>WARNING</values>
</children>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceClassName" type="string">
<values>com.ibm.rcp.managedsettings.internal.UpdateJob</values>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceMethodName" type="string">
<values>getProvidersToUpdate</values>
</extendedDataElements>
<sourceComponentId component="Expeditor 6.2" componentIdType="ProductName" instanceId="1579774186232" location="RealSoft" locationType="Hostname" subComponent="com.ibm.rcp.managedsettings" threadId="70" componentType="http://www.w3.org/2001/XMLSchema-instance"/>
<situation categoryName="ReportSituation">
<situationType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ReportSituation" reasoningScope="INTERNAL" reportCategory="LOG"/>
</situation>
</CommonBaseEvent>
<CommonBaseEvent creationTime="2020-01-24T02:29:57.838+06:00" globalInstanceId="ELc0a8990100016fd418cc0500000004" msg="CWPCA8009W: Could not contribute catalog to launcher; contribution manager not available" severity="30" version="1.0.1">
<extendedDataElements name="CommonBaseEventLogRecord:level" type="noValue">
<children name="CommonBaseEventLogRecord:name" type="string">
<values>WARNING</values>
</children>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceClassName" type="string">
<values>com.ibm.rcp.portal.app.ui.internal.PortalCaiUIPlugin</values>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceMethodName" type="string">
<values>addCatalogToLauncherConditional</values>
</extendedDataElements>
<sourceComponentId component="Expeditor 6.2" componentIdType="ProductName" instanceId="1579774186232" location="RealSoft" locationType="Hostname" subComponent="com.ibm.rcp.portal.app.ui" threadId="1" componentType="http://www.w3.org/2001/XMLSchema-instance"/>
<situation categoryName="ReportSituation">
<situationType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ReportSituation" reasoningScope="INTERNAL" reportCategory="LOG"/>
</situation>
</CommonBaseEvent>
<CommonBaseEvent creationTime="2020-01-24T04:16:13.168+06:00" globalInstanceId="ELc0a8990100016fd418cc050000000a" msg="CLFAD0211E: Exception thrown" severity="50" version="1.0.1">
<extendedDataElements name="CommonBaseEventLogRecord:level" type="noValue">
<children name="CommonBaseEventLogRecord:name" type="string">
<values>SEVERE</values>
</children>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceClassName" type="string">
<values>com.ibm.designer.runtime.domino.adapter.LCDEnvironment</values>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:sourceMethodName" type="string">
<values>doService</values>
</extendedDataElements>
<extendedDataElements name="CommonBaseEventLogRecord:Exception" type="string">
<values>Context Path: /xsp/127.0.0.1!!FlexViewControl.nsf Page Name: /adminViewDefinitionDoc.xsp Control id: selectItems8 Script interpreter error, line=59, col=54: 'v' is undefined at [/ssjsCCRestView.jss].<anonymous>() 57: getServers : function() { 58: var v = @DbLookup(@DbName(),"vwConfig","config","servers"); -> 59: v = (typeof v) == "string" ? [v] : v.toArray(); 60: var sList = ["current server|currentserver"]; 61: for (var x=0;x<v.length;x++) { com.ibm.xsp.exception.EvaluationExceptionEx: Error while executing JavaScript computed expression at com.ibm.xsp.binding.javascript.JavaScriptValueBinding.getValue(Unknown Source) at javax.faces.component.UISelectItems.getValue(Unknown Source) at com.ibm.xsp.component.UISelectItemsEx.getValue(Unknown Sour</values>
<values>ce) at com.sun.faces.util.Util.getSelectItems(Unknown Source) at com.sun.faces.renderkit.html_basic.MenuRenderer.getOptionNumber(Unknown Source) at com.sun.faces.renderkit.html_basic.MenuRenderer.renderSelect(Unknown Source) at com.sun.faces.renderkit.html_basic.MenuRenderer.encodeEnd(Unknown Source) at com.ibm.xsp.renderkit.html_basic.MenuRenderer.encodeEnd(Unknown Source) at com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeEnd(Unknown Source) at javax.faces.component.UIComponentBase.encodeEnd(Unknown Source) at com.ibm.xsp.component.UISelectOneEx.encodeEnd(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderChildren(Unknown Source) at com.ibm.xsp.renderkit.html_extended.HtmlBasicRenderer.encodeChildren(Unknown Source) at com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeChildre</values>
<values>n(Unknown Source) at javax.faces.component.UIComponentBase.encodeChildren(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderChildren(Unknown Source) at com.ibm.xsp.renderkit.html_extended.HtmlBasicRenderer.encodeChildren(Unknown Source) at com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeChildren(Unknown Source) at javax.faces.component.UIComponentBase.encodeChildren(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderChildren(Unknown Source) at com.ibm.xsp.renderkit.html_extended.HtmlBasicRenderer.encodeChildren(Unknown Source) at com.ibm.xsp.renderkit.ReadOnlyAdapterRenderer.encodeChildren(Unknown Source) at javax.faces.component.UIComponentBase.encodeChildren(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderCompo</values>
<values>nent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.util.FacesUtil.renderComponent(Unknown Source) at com.ibm.xsp.component.UIViewRootEx._renderView(Unknown Source) at com.ibm.xsp.component.UIViewRootEx.renderView(Unknown Source) at com.ibm.xsp.application.ViewHandlerExImpl.doRender(Unknown Source) at com.ibm.xsp.application.ViewHandlerExImpl._renderView(Unknown Source) at com.ibm.xsp.application.ViewHandlerExImpl.renderView(Unknown Source) at com.sun.faces.lifecycle.RenderResponsePhase.execute(Unknown Source) at com.sun.faces.lifecycle.LifecycleImpl.phase(Unknown Source) at com.sun.faces.lifecycle.LifecycleImpl.render(Unknown Source) at com.ibm.xsp.controller.Face</values>
<values>sControllerImpl.render(Unknown Source) at >

Viewing all 81696 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>