List "View" with current time in column

Hi.
I know that list view does not support fields calculated on page load. But I have to realize such functionality.
Can someone provide options for realizing this?
"Hack" some internal SQL query, inject JS on a view page, use .NET code somehow?
Using JS seems as the best solution, but how can I do this?
Thanks.

Hi,
According to your post, my understanding is that you wanted to display the current time in colum.
The following code snippet for your reference.
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
function date(format, timestamp) {
var that = this,
jsdate, f, formatChr = /\\?([a-z])/gi,
formatChrCb,
// Keep this here (works, but for code commented-out
// below for file size reasons)
//, tal= [],
_pad = function(n, c) {
n = n.toString();
return n.length < c ? _pad('0' + n, c, '0') : n;
txt_words = ["Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
formatChrCb = function(t, s) {
return f[t] ? f[t]() : s;
f = {
// Day
d: function() { // Day of month w/leading 0; 01..31
return _pad(f.j(), 2);
D: function() { // Shorthand day name; Mon...Sun
return f.l().slice(0, 3);
j: function() { // Day of month; 1..31
return jsdate.getDate();
l: function() { // Full day name; Monday...Sunday
return txt_words[f.w()] + 'day';
N: function() { // ISO-8601 day of week; 1[Mon]..7[Sun]
return f.w() || 7;
S: function() { // Ordinal suffix for day of month; st, nd, rd, th
var j = f.j();
if (j < 4 || j > 20) {
return (['st', 'nd', 'rd'])[j % 10 - 1];
else {
return 'th';
w: function() { // Day of week; 0[Sun]..6[Sat]
return jsdate.getDay();
z: function() { // Day of year; 0..365
var a = new Date(f.Y(), f.n() - 1, f.j()),
b = new Date(f.Y(), 0, 1);
return Math.round((a - b) / 864e5);
// Week
W: function() { // ISO-8601 week number
var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3),
b = new Date(a.getFullYear(), 0, 4);
return _pad(1 + Math.round((a - b) / 864e5 / 7), 2);
// Month
F: function() { // Full month name; January...December
return txt_words[6 + f.n()];
m: function() { // Month w/leading 0; 01...12
return _pad(f.n(), 2);
M: function() { // Shorthand month name; Jan...Dec
return f.F().slice(0, 3);
n: function() { // Month; 1...12
return jsdate.getMonth() + 1;
t: function() { // Days in month; 28...31
return (new Date(f.Y(), f.n(), 0)).getDate();
// Year
L: function() { // Is leap year?; 0 or 1
var j = f.Y();
return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0;
o: function() { // ISO-8601 year
var n = f.n(),
W = f.W(),
Y = f.Y();
return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0);
Y: function() { // Full year; e.g. 1980...2010
return jsdate.getFullYear();
y: function() { // Last two digits of year; 00...99
return f.Y().toString().slice(-2);
// Time
a: function() { // am or pm
return jsdate.getHours() > 11 ? "pm" : "am";
A: function() { // AM or PM
return f.a().toUpperCase();
B: function() { // Swatch Internet time; 000..999
var H = jsdate.getUTCHours() * 36e2,
// Hours
i = jsdate.getUTCMinutes() * 60,
// Minutes
s = jsdate.getUTCSeconds(); // Seconds
return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3);
g: function() { // 12-Hours; 1..12
return f.G() % 12 || 12;
G: function() { // 24-Hours; 0..23
return jsdate.getHours();
h: function() { // 12-Hours w/leading 0; 01..12
return _pad(f.g(), 2);
H: function() { // 24-Hours w/leading 0; 00..23
return _pad(f.G(), 2);
i: function() { // Minutes w/leading 0; 00..59
return _pad(jsdate.getMinutes(), 2);
s: function() { // Seconds w/leading 0; 00..59
return _pad(jsdate.getSeconds(), 2);
u: function() { // Microseconds; 000000-999000
return _pad(jsdate.getMilliseconds() * 1000, 6);
// Timezone
e: function() { // Timezone identifier; e.g. Atlantic/Azores, ...
// The following works, but requires inclusion of the very large
// timezone_abbreviations_list() function.
/* return that.date_default_timezone_get();
throw 'Not supported (see source code of date() for timezone on how to add support)';
I: function() { // DST observed?; 0 or 1
// Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.
// If they are not equal, then DST is observed.
var a = new Date(f.Y(), 0),
// Jan 1
c = Date.UTC(f.Y(), 0),
// Jan 1 UTC
b = new Date(f.Y(), 6),
// Jul 1
d = Date.UTC(f.Y(), 6); // Jul 1 UTC
return ((a - c) !== (b - d)) ? 1 : 0;
O: function() { // Difference to GMT in hour format; e.g. +0200
var tzo = jsdate.getTimezoneOffset(),
a = Math.abs(tzo);
return (tzo > 0 ? "-" : "+") + _pad(Math.floor(a / 60) * 100 + a % 60, 4);
P: function() { // Difference to GMT w/colon; e.g. +02:00
var O = f.O();
return (O.substr(0, 3) + ":" + O.substr(3, 2));
T: function() { // Timezone abbreviation; e.g. EST, MDT, ...
// The following works, but requires inclusion of the very
// large timezone_abbreviations_list() function.
/* var abbr = '', i = 0, os = 0, default = 0;
if (!tal.length) {
tal = that.timezone_abbreviations_list();
if (that.php_js && that.php_js.default_timezone) {
default = that.php_js.default_timezone;
for (abbr in tal) {
for (i=0; i < tal[abbr].length; i++) {
if (tal[abbr][i].timezone_id === default) {
return abbr.toUpperCase();
for (abbr in tal) {
for (i = 0; i < tal[abbr].length; i++) {
os = -jsdate.getTimezoneOffset() * 60;
if (tal[abbr][i].offset === os) {
return abbr.toUpperCase();
return 'UTC';
Z: function() { // Timezone offset in seconds (-43200...50400)
return -jsdate.getTimezoneOffset() * 60;
// Full Date/Time
c: function() { // ISO-8601 date.
return 'Y-m-d\\TH:i:sP'.replace(formatChr, formatChrCb);
r: function() { // RFC 2822
return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb);
U: function() { // Seconds since UNIX epoch
return jsdate / 1000 | 0;
this.date = function(format, timestamp) {
that = this;
jsdate = (timestamp === undefined ? new Date() : // Not provided
(timestamp instanceof Date) ? new Date(timestamp) : // JS Date()
new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)
return format.replace(formatChr, formatChrCb);
return this.date(format, timestamp);
$(function() {
$('.ms-noWrap').text(date('l, F jS, Y, h:i:s A'));
</script>
Note: You should change the class name to fit your environment.
http://jsfiddle.net/licson0729/jHHsm/
More reference:
http://social.technet.microsoft.com/Forums/sharepoint/en-US/580b9c50-f945-4931-b68f-da68d84e766e/how-to-display-current-date-time-in-share-point-using-jquery
Thanks & Regards,
Jason
Jason Guo
TechNet Community Support

Similar Messages

  • List view item display time is taking too much

    Hi,
         I am working in a sharepoint2013 project. In our project , list view item display time is taking too much in IE8 sp2013 64 bit environment. Can anyone help me to resolve this issue?
    Thanks,
    Nabhendu

    Hi Nabhendu,
     We had something similar with our SP2013 and IE8 32-bit. It seems that IE8 was in Compatible mode which make it IE7, which is unsupported by SP2013 due to HTML5.
    Issue : List view especially datasheet view which has been moved from ActiveX to HTML5 had very slow response on SP2013 and IE8 32-bit.
    Resolution : Try Chrome and see if its CSS/Masterpage or SP2013 issues performance issue.
    We deployed masterpage and css which was used in our SP2007 site with minor changes, but later we figured out that we need to make major changes in order to work with IE8 and SP2013.
    Try Indexing Columns.
    check how many look up columns are used.
    Hopefully that may help you..
    Thanks,
    Parth
    Thanks and Regards, Parth

  • DB view with flexible number of columns?

    In my Oracle 10 I have these tables
    Customer table:
    id      customer
    1       John
    2       Bob
    Item table
    id      item_name
    1       itemA
    2       itemB
    3       itemC
    4       itemD
    Purchase table:
    id      item_id date    customer_id
    1       3       070202  2
    2       6       070203  5
    ...I'd like to create a view like this:
            itemA   itemB   itemC   itemD   ...
    John    3       4       0       0       ...
    Bob     0       3       0       0       ...
    ...The view showed John purchased itemA 3 times, item B 4 times. Bob purchased itemB 3 times. This assume each customer only by one item at a time, which is a reasonable simplification of my situation.
    Such a view (with variable number of columns) is needed not in our web application but also provide an understandable data source for non IT professional to use report software. If my approach of solving this problem is completely wrong, I'd also like to know what's the common practice. Thank you very much in advance!
    Message was edited by:
    user609663

    I have tried to ask the question in a way that greatly simplify current problem to make it easy for others to understand without having to explain a lot of background information and 'the situation'; it seems I over-simplified the issue to make it even not worth solving or a wrong question being asked. So here I explain the complete problem and look for advice again (be prepared, pretty long description following:). I am a purchased customer of Oracle 10 DB and I reasonably expect being considered as Oracle user looking for help rather than students trying to play smart with assigned data normalization course exercises.
    We are working on a system that collects data from interview results. The questionnaires for the interviews are formatted with a coded question, followed by user's answer to the question, like the following:
         Question Code   Question content   Answer
         H001            ...                123
         H002            ...                45
         H003            ...                33
         H004            ...                66
         H005            ...                4,66
         ...             ...                ...The users answer question with a digit, for some special questions, e.g. H005, they are allowed to answer with a set of digits. There are thousands of interviews each year, the simplest solution to collect the interview answers is to use such a db table:
    simple_db_table:
    id   H001  H002  H003  H004  H005  H006  H007
    1    123   45    33    66    4     82    9
    ...This solution have two problems:
    1. It doesn't properly store answers to questions that requre a set of digits, like H005.
    2. The number of questions and their codes change from one survey to another, but the table have fixed number of columns and column names.
    And two benefit:
    1. With such simple table, people who use report software that directly access oracle db can creat their reports on easy-to-understand data presentation;
    2. calculation based on questionnaire data is simple, e.g. get the average of H007/H009 for questionnaires that have H002 > H003 * 600 would be:
    SELECT SUM(H007) / SUM(H009) FROM simple_db_table WHERE H002 > H003 * 600;Next solution we have normalized tables:
    questionnaire_entry_table:
    id                 NUMBER
    questionnaire_name CHARquestionnaire_definition_table:
    id                 NUMBER
    questionnaire_id   NUMBER
    question_code      CHAR
    question_content   VARHCARinterview_table:
    id                 NUMBER
    questionnaire_id   NUMBER
    date               DATEquestionnaire data table: itv_data
    id                 NUMBER
    interview_id       NUMBER
    question_code      CHAR
    answer             NUMBERWith the new structure, it just turn the problems of simple_db_table to its benefit and simple_db_table's benefit become the problem:
    1. Personnel who use report creation software feel too confused to make report based on such tables, because they do not understand the normalized modeling. In our case, effective training is difficult because there will be many geographically distributed people make reports based on this structure and they have lower IT knowledge than database administrators. These personnel can make reports based on simple_db_table.
    2. calculation based on questionnaire data is very difficult.
    To explain 2, let's take the same example, we still wish to get the average of H007/H009 for questionnaires that have H002 > H003 * 600, my method is:
    setp 1: create a view with by using:
           CREATE VIEW v (id, H002, H003) AS
           SELECT a.itv_id, a.H002, b.H003
             FROM itv_data a, itv_data b
           WHERE a.interviewee_id=b.interviewee_id
             AND a.question_code='H002' AND b.question_code='H003';step 2: create a stored procedure to get the calculation result:
           CREATE OR REPLACE PROCEDURE get_result (result OUT NUMBER) IS
             sh007 NUMBER := 0;
             sh009 NUMBER := 0;
           BEGIN
             SELECT SUM(H007) INTO sh007 FROM itv_data
               WHERE itv_id in (SELECT id FROM v WHERE H002 > H003 * 683);
             SELECT SUM(H009) INTO sh009 FROM itv_data
               WHERE itv_id in (SELECT id FROM v WHERE H002 > H003 * 683);
             idc := sh007/sh009;
           END get_idc;As you can see the calculation become much more complex and might involve overhead.
    There might be better way to calculate the result that I don't know yet. We have some 100 different formulas to calculate different results, so it's important to get them right and efficiently.
    The best solution seems to me is that to create such a view from itv_data and other tables so that to reflect the same structure of simple_db_table. So here comes the question I originally asked how is it possible to create a view with flexible number of columns. I made the very simple example in my original posted message wishing to get an idea of this is possible or the way to go.
    I may be taking a completely wrong approach to attack the problem, e.g. perhaps there is a simpler way to get_result from itv_table and for report creation users I should use a metadata layer on top of the normalized table structure (e.g. by using Metadata Query Language from Pentaho BI). But anyway I'd like to get some insightful ideas from the forum. Again thanks for help in advance.

  • Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?

    Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?
    If not, then to me that is a huge retrograde step

    No, the old album list view is not an option in iTunes 11...
    You can restore much of the look & feel of the previous version with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    If you still feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • IiTunes 8 List view with artwork - track number?

    n list view, with the artwork column expanded, there is an additional column right after the artwork with the track number.
    What's this for?
    Can't remove it.

    not answered

  • Start Time constantly updates with current time

    Hi,
    Start Time of the web service constantly updates with current time.
    Is there anyone who had the same problem?
    Thanks for your help,
    Julien

    Hi MrHoffman,
    Thanks for your reply.
    I've been messing a bit in the apache config files indeed, though it's supposed to be pretty clean: filemaker.
    Configtest reports SYNTAX OK and I can't see anything exceptionnal in the console.app log files :-/
    The only thing I see in my logs is:
    7/28/09 7:30:09 PM org.apache.httpd[22921] Redirect takes two or three arguments, an optional status, then document to be redirected and destination URL
    7/28/09 7:30:09 PM com.apple.launchd[1] (org.apache.httpd[22921]) Exited with exit code: 1
    7/28/09 7:30:09 PM com.apple.launchd[1] (org.apache.httpd) Throttling respawn: Will start in 10 seconds
    7/28/09 7:30:19 PM org.apache.httpd[22929] Syntax error on line 45 of /etc/apache2/sites/0000any_80www.cap.be.conf:
    7/28/09 7:30:19 PM org.apache.httpd[22929] Redirect takes two or three arguments, an optional status, then document to be redirected and destination URL
    7/28/09 7:30:19 PM com.apple.launchd[1] (org.apache.httpd[22929]) Exited with exit code: 1
    7/28/09 7:30:19 PM com.apple.launchd[1] (org.apache.httpd) Throttling respawn: Will start in 10 seconds
    7/28/09 7:30:29 PM org.apache.httpd[22933] Syntax error on line 45 of /etc/apache2/sites/0000any_80www.cap.be.conf:
    7/28/09 7:30:29 PM org.apache.httpd[22933] Redirect takes two or three arguments, an optional status, then document to be redirected and destination URL
    7/28/09 7:30:29 PM com.apple.launchd[1] (org.apache.httpd[22933]) Exited with exit code: 1
    7/28/09 7:30:29 PM com.apple.launchd[1] (org.apache.httpd) Throttling respawn: Will start in 10 seconds
    7/28/09 7:30:39 PM org.apache.httpd[22934] Syntax error on line 45 of /etc/apache2/sites/0000any_80www.cap.be.conf:
    7/28/09 7:30:39 PM org.apache.httpd[22934] Redirect takes two or three arguments, an optional status, then document to be redirected and destination URL
    7/28/09 7:30:39 PM com.apple.launchd[1] (org.apache.httpd[22934]) Exited with exit code: 1
    7/28/09 7:30:39 PM com.apple.launchd[1] (org.apache.httpd) Throttling respawn: Will start in 10 seconds
    7/28/09 8:00:41 PM com.apple.launchd[1] (org.apache.httpd) Unknown key: SHAuthorizationRight
    7/28/09 8:21:49 PM com.apple.launchd[1] (org.apache.httpd) Unknown key: SHAuthorizationRight
    7/28/09 8:38:39 PM com.apple.launchd[1] (org.apache.httpd) Unknown key: SHAuthorizationRight
    7/28/09 9:11:51 PM com.apple.launchd[1] (org.apache.httpd) Unknown key: SHAuthorizationRight
    7/29/09 1:02:47 PM com.apple.launchd[1] (org.apache.httpd) Unknown key: SHAuthorizationRight
    Thanks again,
    Julien

  • List View - Remove Group By Headers - Column Names

    I have a List View web part using Group By. However, when you do that, it uses the Actual column name with a colon in the visual representation.
    Also, there is a bar with the name of the column showing.
    I don't want to have either of these showing. I have found pages on the net that tell you how to do this using SPD, but because that causes unghosting, we don't use SPD.
    Also, I found this, using Javascript:
    http://amitphule.blogspot.com/2011/10/hiding-group-headers-from-sharepoint.html
    This works. However, it removes the Editing components of the ribbon also - you can't go back later and do any editing.
    Does anyone have any other ideas on this?

    Hi,
    According to your post, my understanding is that you wanted to remove Group By Headers in the List View web part.
    I try to reproduce the issue using the code you provided, however, I can edit the items.
    The initial status:
    The final status:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • SharePoint 2010 List View with Group By is Not Sorting Correctly

    My organization has a list in SharePoint 2010 that is being used as a FAQ. The list contains the following columns:
    Question-  Single line of text 
    Answer-  Multiple lines of text 
    Priority-  Number 
    Priority is the importance of the question and is a unique integer number. Higher Priority questions are to be displayed at the top of the list.
    A view has been created to display the Question and Answer columns, grouped by Question, and sorted by Prioity. The problem is that the SharePoint is not sorting by priority. I have added display of Priority and embedded a screen capture showing the order
    going non sequentially from 1,005 to 1,024 to 1,015.
    Is this a known defect? Is there a workaround? Are there other options?
    Regards,
    Darian.

    Hi,
    Based on your description, I have done a test. I can reproduce your issue.
    Per my test, I come up with a conclusion.
    When we group by Question, the list view is be grouped. Then we sort by Priority, actually it is only sort the item within a group rather than the entire list.
    So the items inside of different groups out of order is normal.
    Best Regards,
    Lisa ChenForum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Lisa Chen
    TechNet Community Support

  • View with a dynamic formula column

    Hi all,
    I have a view that has stock transaction columns like quantity received, quantity issued,receive unit price, issue unit price.
    I want to calculate the moving average cost which depends on all of these columns.
    Can i create a column in the view that calculates the moving average cost for any transaction, which is dependant on all the previous transactions to finally get the moving average cost for all the transactions ( like what we get from Excell) ?
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
    PL/SQL Release 10.1.0.2.0 - Production
    CORE 10.1.0.2.0 Production
    TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
    Please help me

    Hi
    In addition to the procedure i told before, i also wrote this code to get the moving average cost and it's giving the required result, the next step is to update the base tables with moving average cost from this query.
    select t1.*
    ,sum(rate*qty ) OVER (partition by store_no,stock_code order by store_no,stock_code ROWS BETWEEN UNBOUNDED PRECEDING AND
    CURRENT
    ROW ) AS cum_amount
    ,(sum(rate*qty ) OVER (partition by store_no,stock_code order by store_no,stock_code ROWS BETWEEN UNBOUNDED PRECEDING AND
    CURRENT
    ROW )
    /cum_qty) moving_avg_cost
    from
    select store_no,stock_code,qty
    , decode(sign(Qty),-1,
    lag(avg_cost,1,avg_cost)OVER (partition by store_no,stock_code order by store_no,stock_code ),rcv_ucost) rate
    ,(qty*decode(sign(Qty),-1,
    lag(avg_cost,1,avg_cost)OVER (partition by store_no,stock_code order by store_no,stock_code ),rcv_ucost) ) amount
    ,cum_qty
    from
    (with a as
    (select '1' store_no,'0101001' stock_code,10 qty,5 rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101001' stock_code,-5 qty,null rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101001' stock_code,30 qty,8 rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101001' stock_code,-10 qty,null rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101001' stock_code,8 qty,12 rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101002' stock_code,10 qty,10 rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101002' stock_code,-3 qty,null rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101002' stock_code,20 qty,12 rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101002' stock_code,-5 qty,null rcv_ucost
    FROM dual
    union all
    select '1' store_no,'0101002' stock_code,4 qty,14 rcv_ucost
    FROM dual)
    select store_no,stock_code,qty,rcv_ucost,sum(qty) OVER (partition by store_no,stock_code order by store_no,stock_code ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT
    ROW ) AS cum_qty
    ,(sum(qty*rcv_ucost ) OVER (partition by store_no,stock_code order by store_no,stock_code ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT
    ROW ) /
    sum(qty) OVER (partition by store_no,stock_code order by store_no,stock_code ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT
    ROW )) avg_cost
    from a ) T
    )t1;
    If you have any improvments to this code don't hesitate to tell me.
    Regards
    Mostafa Abolaynain

  • Selection screen list box with run time values

    Hi,
    I have to create a selection screen list box with with values at run time.
    This is actually for a maintanence view.
    Please help.
    Thanks
    Vimalraj

    Have a search in SDN and elsewhere for the function module 'VRM_SET_VALUES'... for example there's one at:
    Re: Listbox with Function code in Table control
    wherein the 2nd listbox contents are driven from the option selected in the first listbox.
    Jonathan

  • SharePoint 2013 List View with query string filter stops working after editing view from browser

    I have created one list definition in which I have added one list view which will filter data from query string paramater
    So when I am creating list from my list definition, view with query string filter is working fine.
    But when I am modifying view from UI(I am not changing any thing , just opening "Modify View" page and then click on "Save" button), view gets stop working means it's not filtering data based on query string
    Any suggestion what I am missing?
    Below is my list view schema
    <View BaseViewID="11" Type="HTML" TabularView="FALSE" WebPartZoneID="Main" DisplayName="$Resources:OIPLBScoreCard,viewFilterTasksByTarget;" MobileView="True" MobileDefaultView="False" Url="FilteredTasks.aspx" SetupPath="pages\viewpage.aspx" DefaultView="FALSE" ImageUrl="/_layouts/15/images/issuelst.png?rev=23">
    <Toolbar Type="Standard" />
    <ParameterBindings>
    <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
    <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)" />
    <ParameterBinding Name="TargetId" Location="QueryString(TargetId)" />
    </ParameterBindings>
    <JSLink>hierarchytaskslist.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <JSLink>clienttemplates.js</JSLink>
    <RowLimit Paged="TRUE">100</RowLimit>
    <ViewFields>
    <FieldRef Name="Body"></FieldRef>
    <FieldRef Name="Title"></FieldRef>
    <FieldRef Name="StartDate"></FieldRef>
    <FieldRef Name="DueDate"></FieldRef>
    </ViewFields>
    <ViewData>
    <FieldRef Name="PercentComplete" Type="StrikeThroughPercentComplete"></FieldRef>
    <FieldRef Name="DueDate" Type="TimelineDueDate"></FieldRef>
    </ViewData>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="oipscTargetLookup" LookupId="TRUE"/>
    <Value Type="Lookup">{TargetId}</Value>
    </Eq>
    </Where>
    </Query>
    </View>
    I have one lookup field from "Target List" in my source list and I want to filter data based on that lookup field.

    Hi JayJT,
    The Miscellaneous is located in the contact list that you used for the connection.
    So , you need to edit the page, then edit the contact list that you used, in the web part properties of the contact list, you will find Miscellaneous, then expand it and select ‘Server Render’ .
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • ICal under 10.5 doesn't print the List view with To Do's correctly.

    The problem is this: I have a bunch of To Do's in iCal. I usually print them out on paper using the LIST VIEW (print dialog) so that I can take my To Do list with me. Unfortunately, after updating to Leopard 10.5, all the URL's in my To Do's have wierd links to my email and print funny code on paper now. It's like the added feature of To Do's in mail has caused something here. Anyone else experiencing this? By this way, this only happens with old to do's (before the upgrade), not new ones.

    John,
    This has happened to me as well. Our school uses phpicalendar to publish lesson plans to our web server. I have had this happen to three other teachers as well. In order to get them back to the correct server I have to export their calendars to the desktop, create a new calendar and publish it to the correct location, then import their calendars from the desktop. I haven't been able to re-enter the correct URL in the existing calendars - get an error when publishing.

  • How to get 'List' view with playlist within Music

    The Music Ap is usually listed along the botton of iPad.
    With in that ap we have menus across the bottom of the screen.
    Within the 'Playlists' music I have thumb nail icon views only.  See below:
    I would like a 'list view' - no icons.  See below
    Where do I change this option?
    Thank you

    Assuming I understand what you are asking, you can't. What you see is what you get. When you open a created play list however, what you get is a simple list of tracks.
    You might investigate some alternate music players in the app store to see if one does what you want.

  • Why can't I see the calendar in list view with iOS 7.1?

    Since I've upgraded to iOS 7.1 I can't see my calendar in list view. When you click on the search button as you used to, it only works as a search rather than pulling up the list view.  If you search for a letter then you get a list of all entries that have that letter included but not the entire list of entries. I'm lost without this, how do I get around it?

    to the left of the search button in day view are dots with lines.  Click that.  You should see the list view.

  • Problems on selecting views with french characters into column names

    Hi All,
    I have views with column names such as "Détermination Planimétriq" or "Année de construction:*";
    I can get in my c# function this columns names from ALL_VIEWS dictionary table, but if I try to make a selectionby use of an OracleCommand, Oracle returns an "Invalid identifier" error:
    SELECT "Détermination Planimétriq" FROM mytable;
    System.Data.OracleClient.OracleException (0x80131938): ORA-00904: "Determination Planimetriq": invalid identifier at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc) at ...
    Any suggestion?...

    Be wary of using character codes outside the Western European "simple" alphanumeric [A-Z0-9] for object names, i.e. columns, table names, function and procedure names, and so on.
    First reason, there is a 30 character limit for most object names, and characters that have to be spelled out with unicode characters take more space, i.e.:
    select dump( 'Détermination Planimétriq'  ) from dual;
    DUMP('D?TERMINATIONPLANIM?TRIQ')
    Typ=96 Len=29: 68,239,[ ... ]Although the varchar string for that column name looks like 25 characters, it needs room for 29 to store the e<acute> character. And could also depend on the client settings. Using case sensitive names is not a best practice, its better to avoid specifying objects with the double quotes.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements008.htm#i27570

Maybe you are looking for

  • Magsafe charger issue

    I noticed that when my laptop is charging and if I wiggle a little near the base of magsafe connector it would stop charging (red light turns off) but comes back to charge again when I stopped doing that. Is the wire connection lose inside? I got the

  • Order creation using workflow

    Hello, I'm trying to create sales order automatically using event triggered by user status changes. I need no user participation in this process. Can i use workflow for this purpose? As i see from documentation' examples user activity is needed...Do

  • HT4527 My Home Sharing isn't working.

    Both of my computers are authorized and online, but the Home Sharing tab still doesn't show up. How can I fix this?

  • Deleted, posted in wrong section.

    Deleted, posted in wrong section. Message was edited by: Jeff Vader

  • E- Rec - Hiding links - Create / copy requisistions in Recruiter start page

    I use a MSS view for creating Requisitions and hence want to hide Create / Copy requisitions link in Recruiter start page --> maintain requisitions. Cn it be done with context changes. If yes, Can some one provide some info on the steps required. Tha